I’m trying to use 2 plugins in Unity, both have their own manifest files and after merging the activities I can only get 1 to work at a time.
The part that they both share in an activity is:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
And only the top most activity with the above intent will run. The second activity that has the same intent-filter will not run.
Is there a work-around for combining two manifests with a problem like this? If I take the intent out of one activity it doesn’t work.