AndroidManifest.xml 파일 수정


아래 versionCode와 versionName 을 기존 출시한 숫자보다 높여서 수정


<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.kimhae.net.ellord"

    android:versionCode="1"

    android:versionName="1.0" >


아래처럼


<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.kimhae.net.ellord"

    android:versionCode="2"

    android:versionName="1.1" >



블로그 이미지

엘로드넷

,