이 답변에 따르면 해결 방법 "APK의 버전 코드는 2보다 높아야합니다." Google Play의 개발자 콘솔에서? 방금 버전 코드를 2에서 3으로 변경했는데 빌드를 업로드하지 못했습니다.
APK를 업로드하기 전의 이전 매니페스트입니다.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage name"
android:installLocation="auto"
android:versionCode="28"
android:versionName="1.0028" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
.....
여기 안드로이드 개발자 콘솔에 업로드해야하는 새 버전 코드가 있습니다. 내 menifest보기
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage name"
android:installLocation="auto"
android:versionCode="2"
android:versionName="2.0001" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
......
나는 문제가 무엇인지 모른다. 도움이 필요하세요?