hi Erel,
i tried to deploy to the market successfully ,
however when i tried to modify the B4A apps , it can deploy
to my emulator ...
then when i click on the "Upload Upgrade" , upload the latest APK,
it always threw error and block me from upgrading , any idea ?
The new apk's versionCode (1) in AndroidManifest.xml must be higher than the old apk's versionCode (1).
Do i need to manually change anything in the AndroidManifest.xml file before i upgrade my
deployed Apps in market ?
<?xml version="1.0" encoding="utf-8" ?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="anywheresoftware.b4a.samples.currencyconverter" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="4" />
<supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" android:versionCode="2" android:versionName="" />
- <application android:icon="@drawable/icon" android:label="Currency Converter">
- <activity android:name=".main" android:label="Currency Converter" android:screenOrientation="unspecified">
- <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
B.R,
kalmen