|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | | -<manifest |
3 | | - xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
4 | 3 | 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 | | - |
14 | | - <application |
15 | | - android:theme="@style/UnityThemeSelector" |
16 | | - android:icon="@mipmap/app_icon" |
17 | | - android:label="@string/app_name"> |
18 | | - <activity android:name="com.unity3d.player.UnityPlayerActivity" |
19 | | - android:label="@string/app_name"> |
| 4 | + xmlns:tools="http://schemas.android.com/tools"> |
| 5 | + <application android:icon="@drawable/app_icon" |
| 6 | + android:label="@string/app_name" |
| 7 | + android:theme="@style/Theme.WaveVR.Loading" |
| 8 | + android:resizeableActivity="false" |
| 9 | + tools:replace="android:theme"> <!--You can use your theme here.--> |
| 10 | + <activity android:name="com.htc.vr.unity.WVRUnityVRActivity" |
| 11 | + android:label="@string/app_name" |
| 12 | + android:enableVrMode="@string/wvr_vr_mode_component"> |
20 | 13 | <intent-filter> |
21 | 14 | <action android:name="android.intent.action.MAIN" /> |
22 | 15 | <category android:name="android.intent.category.LAUNCHER" /> |
| 16 | + <category android:name="com.htc.intent.category.VRAPP" /> |
23 | 17 | </intent-filter> |
24 | 18 | <meta-data android:name="unityplayer.UnityActivity" android:value="true" /> |
| 19 | + <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" /> |
25 | 20 | </activity> |
26 | 21 | </application> |
27 | | - |
28 | | - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 22 | + |
| 23 | + <!-- <uses-permission android:name="android.permission.CAMERA" /> --> |
| 24 | + <!-- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> --> |
| 25 | + |
| 26 | + <uses-permission android:name="com.htc.vr.core.server.VRDataWrite"/> |
| 27 | + <uses-permission android:name="com.htc.vr.core.server.VRDataRead"/> |
| 28 | + <uses-permission android:name="com.htc.vr.core.server.VRDataProvider" /> |
| 29 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
29 | 30 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
30 | 31 | </manifest> |
31 | 32 |
|
0 commit comments