इस उत्तर के अनुसार "आपका एपीके का वर्जन कोड 2 से अधिक होना चाहिए।" Google Play के डेवलपर कंसोल में? मैंने अभी संस्करण कोड को 2 से 3 में बदल दिया है और यह बिल्ड को अपलोड करने में विफल रहा है।
इससे पहले कि मैं एपीके अपलोड करता हूं, यह मेरी पुरानी अभिव्यक्ति है
<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" />
.....
यहाँ नया वर्जन कोड है जो मुझे android डेवलपर कंसोल पर अपलोड करना है। मेरा मेनिफेस्ट देखें
<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" />
......
मुझे नहीं पता कि क्या मुद्दा है। कोई मदद?