Skip to content Skip to sidebar Skip to footer

Unity Android Manifest Merge Error

I'm trying to build my app for Android, but I keep getting these error messages which are on the picture. Since I'm beginner in programming, I have no idea what is wrong. Two manif

Solution 1:

You have repeated lines in the manifest that can cause the manifest merge to fail as it doesn't know which one to keep. If the error persists, please copy the full error message in your post.

Remove this from your manifest 2:

<meta-dataandroid:name="com.google.android.gms.version"android:value="8115000" /><!-- Google Mobile Ads Activity --><activityandroid:name="com.google.android.gms.ads.AdActivity"android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"android:theme="@android:style/Theme.Translucent" />

EDIT:

To fix the problem with this plugin https://github.com/googleads/googleads-mobile-unity

The easiest way is to go to Assets -> Play Services Resolver -> Android Resolver -> Resolve client jars

That should update all your libraries and dependencies of your project, please make sure you have latest version of the plugin which is 3.2.0 as of today.

Post a Comment for "Unity Android Manifest Merge Error"