According to this answer How to solve "Your APK version code must be above 2." in the Google Play Developer Console? I just changed the version code from 2 to 3 and it could not load the assembly.
This is my old manifest before I downloaded 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" /> .....
here is the new version code that I have to download to the Android developer console. See My manifest
<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" /> ......
I do not know what's the problem. Any help? 
android apk
Ahmad Arslan Jul 16 '14 at 4:48 a.m. 2014-07-16 04:48
source share