When I upload my APK to Google Play, I get this error about my manifest:
I used Basic4Android to make my application.
This is my manifest file:
Please help.
When I upload my APK to Google Play, I get this error about my manifest:
I used Basic4Android to make my application.
This is my manifest file:
Please help.
You do not upload a .zip
file you just upload the .apk
. Google play can get the AndroidManifest.xml
data straigt from the .apk
file.
For more just follow the Publishing Guide
You can also check out that answer:
Upload Android app to google play step by step...?
Signing Guides for Basic4Android, Android Developer Console
If you are uploading a zip file that contains the Manifest and the apk file, then please don't. You just have to upload/submit the apk file. Make sure that you sign the apk file with a release key and not the default debug key/certificate.
Your apk file already contains manifest file in it. So, no need to zip it again.
More info on prepping your apk for release: Prep for publish HTH.