Conflicting intent-filter in manifest for 2 plugins

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.

I have the exact same issue, no fix though.

This question would be best asked in the Android section but… is your particular activity capable of serving as the launch point for your application? Also, have you specified different icons / labels? I’m just throwing out guesses because I’m not sure what all of the requirements are… but I’m also wondering if you even need more than one activity to specify the LAUNCHER category. Can you paste us the full XML for the particular Actions this applies to?