play console 에 접속해서
출시관리 -> 앱 버전 -> 버전 수정을 눌러주면 됩니다.
단, apk 버전이 이전 버전 보다 높아야 하는데요~
AndroidManifest.xml 에서 밑에 두줄을 추가해 주시고
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="~~~~~~~~~~"
android:versionCode="2"
android:versionName="1.1" >
build.gradle(Module:app)에서
versionCode와 versionName 추가 후에
sync를 진행 하고 apk를 추출해서 등록해 주시면 됩니다.~
android {
compileSdkVersion 28
defaultConfig {
applicationId "semu.hanasemu.howtax"
minSdkVersion 14
targetSdkVersion 28
versionCode 2
versionName "1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
반응형
'안드로이드' 카테고리의 다른 글
android Webview 개발시 유용한 팁들~ (0) | 2019.04.05 |
---|