Unity の 2 つのプラグインから Android マニフェスト ファイルを結合しようとしていますが、同じインテント フィルターを持つ 2 つのアクティビティがあり、同時に動作させることができるのはどちらか一方だけです....
競合する 2 つのアクティビティのうち、マニフェスト ファイルで一番上にある方が機能します。したがって、マニフェスト #1 からのアクティビティが最上位にある場合、プラグイン #1 は機能しますが #2 は機能しません。
2 つの競合するアクティビティは次のとおりです。
<activity
android:name="com.devfo.andutils.DevfoUnityPlayerActivity"
android:label="@string/app_name"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
と:
<activity android:name="com.qualcomm.QCARUnityPlayer.QCARPlayerProxyActivity"
android:label="@string/app_name" android:screenOrientation="portrait"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2つをマージして同じアプリから動作させる方法はありますか? Unity 3d を使用しています。