We are creating an Android plugin for Unity which listens to an Intent. Since we needed information of the intent we have added the intent to our main Activity. This activity is a custom class extending the UnityPlayerNativeActivity class.
When we receive a new Intent, a black screen appears on top of the Unity screen. This is something we don’t want. The Intent should just collect information in the background, so we can access this information in Unity.
We tried setting the theme to transparent in the manifest, but that didn’t solve the problem. It just shows the Unity splash screen instead of the black screen.
Does anyone has an idea on how we could solve this problem?