|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | | -<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | +<manifest |
| 3 | + xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 4 | package="com.unity3d.player" |
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"> |
| 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"> |
13 | 20 | <intent-filter> |
14 | 21 | <action android:name="android.intent.action.MAIN" /> |
15 | 22 | <category android:name="android.intent.category.LAUNCHER" /> |
16 | | - <category android:name="com.htc.intent.category.VRAPP" /> |
17 | 23 | </intent-filter> |
18 | 24 | <meta-data android:name="unityplayer.UnityActivity" android:value="true" /> |
19 | | - <meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" /> |
20 | 25 | </activity> |
21 | 26 | </application> |
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" /> |
| 27 | + |
29 | 28 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
30 | 29 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
31 | 30 | </manifest> |
|
0 commit comments