AndroidManifest.xml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. package="com.unity3d.player"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:installLocation="preferExternal">
  7. <supports-screens
  8. android:smallScreens="true"
  9. android:normalScreens="true"
  10. android:largeScreens="true"
  11. android:xlargeScreens="true"
  12. android:anyDensity="true"/>
  13. <application
  14. android:theme="@style/UnityThemeSelector"
  15. android:icon="@mipmap/app_icon"
  16. android:label="@string/app_name">
  17. <activity android:name="com.unity3d.player.UnityPlayerActivity"
  18. android:label="@string/app_name">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. <category android:name="com.general.intent.category.XR" />
  23. </intent-filter>
  24. <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  25. </activity>
  26. </application>
  27. </manifest>