| 1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android">
- <application>
- <activity
- android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
- android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
- android:launchMode="singleTask"
- android:name="com.unity3d.player.UnityPlayerActivity"
- android:excludeFromRecents="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.INFO"/>
- </intent-filter>
- </activity>
- <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
- </application>
- </manifest>
|