Skip to content Skip to sidebar Skip to footer

Android Manifest Merge - Different Launcher Activity From Library Project

I have a library project which has the following structure :

Solution 1:

Change the AndroidManifest in the consuming app/lib from:

<manifestxmlns:android="http://schemas.android.com/apk/res/android">
...
<activityandroid:name="com.comp.package.activities.A2">

To:

<manifestxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools">
...
<activityandroid:name="com.comp.package.activities.A2"tools:merge="override">

Post a Comment for "Android Manifest Merge - Different Launcher Activity From Library Project"