AndroidManifest.xml 1.7 KB

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.unity3d.player" xmlns:tools="http://schemas.android.com/tools" android:installLocation="preferExternal">
  3. <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
  4. <application android:theme="@style/UnityThemeSelector" android:icon="@drawable/app_icon" android:label="@string/app_name" android:isGame="true">
  5. <activity android:label="@string/app_name" android:screenOrientation="fullSensor" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density" android:hardwareAccelerated="false" android:name="com.unity3d.player.UnityPlayerActivity">
  6. <intent-filter>
  7. <action android:name="android.intent.action.MAIN" />
  8. <category android:name="android.intent.category.LAUNCHER" />
  9. <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
  10. </intent-filter>
  11. <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  12. </activity>
  13. <meta-data android:name="nreal_sdk" android:value="true" />
  14. <meta-data android:name="com.nreal.supportDevices" android:value="NrealLight|NrealAir" />
  15. </application>
  16. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  17. <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
  18. <uses-permission android:name="android.permission.BLUETOOTH" />
  19. <uses-feature android:name="android.hardware.bluetooth_le" android:required="false" />
  20. </manifest>