03-21-2012 12:38 PM
I was able to previously use the online BAR signing tool and repackage my .apk for the Playbook, however when I try to re-sign a new version of my app I experience some problems.
I get an error message
"This APK was already packaged and signed, please update the APK’s version number to package again"
Does anyone know what this means?
I did try to increase the version of my app but to no avail.
03-22-2012 08:47 AM
You have to increase the versionCode tag in manifest file.
In manifest you can define versionCode and versionName.
You have to increase VersionCode. As far as I know VersionName is not really interesting for the BAR signer.
For e.g.:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.your.application" android:versionCode="1" android:versionName="1.0.0" >
increasing version means it should be changed to
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.your.application" android:versionCode="2" android:versionName="1.0.1" >
Did you do this or did you only increased versionName?
07-27-2012 08:26 AM
increase the version of the apk. Increase it to other then 1.0.. keep 1.0.1 or 1.1. i am sure it will resign your app