Android Question Uploading App to Google Play Store error: .aab file [SOLVED]

VictorTandil

Member
Licensed User
Longtime User
Hello, good morning. I am configuring my App to publish it in the Google Store and when uploading the "aab" file it gives me the following error:

"An error occurred while running the bundletool build-apks command on the Android App Bundle you uploaded. Make sure this is valid. To do this, run the bundletool build-apks tool locally and try again. Get more information. Error: Found multiple <meta-data> elements for key 'com.google.android.gms.version', expected at most one."

Any idea what the error is due to?
 

DonManfred

Expert
Licensed User
Longtime User
This is the error
Found multiple <meta-data> elements for key 'com.google.android.gms.version', expected at most one.

You probably have multiple of these entries in your app manifest. Mabe added by multiple libs?
 
Upvote 1

VictorTandil

Member
Licensed User
Longtime User
In effect, this line was duplicated:
CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase):


Thank you Don Manfred
 
Upvote 0
Top