Skip to content Skip to sidebar Skip to footer

Error Message I Got When I Went To Upload To The Playstore

This is the message I get, when I try to upload signed-aligned APK to the play store. Can someone please help out to fix the bug!! Your APK cannot be analyzed using 'aapt dump badg

Solution 1:

Following points are need to be taken care of while uploading file on android market

(1) "android:versionCode" attribute from AndroidManifest.xml is proper. (2) "android:versionName" attribute from AndroidManifest.xml is proper. (3) The package name is very unique,. Because all the apps on android market are separated by the package.

Also make sure that you upload apk file after exporting ...

For more reference .. http://developer.android.com/tools/publishing/publishing_overview.html#publishing-prepare

Solution 2:

Some developers have reported seeing the error"Failed to run aapt dump badging: ERROR getting 'android:value' attribute for meta-data:attribute could not be found"when attempting to upload their .apk.

We're working on solving this problem. In the meantime, you can try adding the "android:value" to any meta-data manifest property that lacks that attribute. See API Guides - for more information.

https://support.google.com/googleplay/android-developer/known-issues/24493

I think it's on your meta-data tag problem and

<meta-dataandroid:name="googleCloudMessagingProjectNumber"android:value="YOUR_GOOGLE_GCM_PROJECT_NUMBER_GOES_HERE" /><!--
            Google Maps v2 API Key  
            Replace "GOOGLE_MAPS_FOR_ANDROID_V2_API_KEY_GOES_HERE" on the next line with the Google Maps for Android API Key provided by Google
            See: https://developers.google.com/maps/documentation/android/start#installing_the_google_maps_android_v2_api
    --><meta-dataandroid:name="com.google.android.maps.v2.API_KEY"android:value="GOOGLE_MAPS_FOR_ANDROID_V2_API_KEY_GOES_HERE" />

Did you put the API key ?

Post a Comment for "Error Message I Got When I Went To Upload To The Playstore"