Getting the error above when uploading my App Bundle to Google Play. I see several other users have had similar issues but usually caused by duplicate manifest entries, in this case I cannot see any duplicates. I have tried commenting out suspect manifest entries but that only gives me a white Google map every time. Unsure of how to progress this further....
Attributes:
#Region Project Attributes
'..................................
#MultiDex: True
#AdditionalJar: com.android.support:support-v4
#AdditionalJar: com.google.android.gms:play-services-location
#Extends: android.support.v7.app.AppCompatActivity
#End Region
Manifest:AddManifestText( <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="33"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"/>) SetApplicationAttribute(android:icon, "@drawable/icon") SetApplicationAttribute(android:label, "$LABEL$") CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase) AddApplicationText( <meta-data android:name="com.google.android.geo.API_KEY" android:value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"/>) AddApplicationText( <uses-library android:name="org.apache.http.legacy" android:required="false"/>) SetApplicationAttribute(android:theme, "@style/MyAppTheme") CreateResource(values, theme.xml, <resources> <style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorPrimary">#0098FF</item> <item name="colorPrimaryDark">#007CF5</item> <item name="colorAccent">#AAAA00</item> <item name="windowNoTitle">true</item> <item name="windowActionBar">false</item> </style> </resources> ) AddApplicationText(<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />)