"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Work with 3rd party plugins which also request MAIN and LAUNCHER intent

Hi,

I notice that in 4.0 beta Vuforia is now using UnityPlayerNativeActivity, which should make it easier to work with other plugins. But it is still not clear to me how can I approach this. Does anyone here have make this work?

To be more specific, in vuforia's AndroidManifest.xml:

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

But a 3rd party plugin also requests the same intent filter. So I can only make one plugin work at one time.