|
2 | 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 3 | package="net.kdt.pojavlaunch"> |
4 | 4 |
|
5 | | - <uses-feature android:glEsVersion="0x00020000"/> |
6 | | - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
7 | | - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
8 | | - <uses-permission android:name="android.permission.INTERNET"/> |
| 5 | + <uses-feature |
| 6 | + android:glEsVersion="0x00020000" |
| 7 | + android:required="true" /> |
| 8 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 9 | + <uses-permission android:name="android.permission.INTERNET" /> |
| 10 | + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 11 | + |
9 | 12 | <application |
10 | | - android:largeHeap="true" |
| 13 | + android:largeHeap="true" |
11 | 14 | android:allowBackup="true" |
12 | | - android:name=".PojavApplication" |
13 | | - android:theme="@style/AppTheme" |
| 15 | + android:name=".PojavApplication" |
| 16 | + android:theme="@style/AppTheme" |
14 | 17 | android:label="@string/app_name" |
15 | 18 | android:icon="@drawable/ic_launcher" |
16 | | - android:roundIcon="@drawable/ic_launcher" |
17 | | - android:resizeableActivity="true"> |
| 19 | + android:roundIcon="@drawable/ic_launcher" |
| 20 | + android:resizeableActivity="true"> |
18 | 21 | <meta-data |
19 | 22 | android:name="android.max_aspect" |
20 | 23 | android:value="ratio_float"/> |
|
28 | 31 | <action android:name="android.intent.action.MAIN" /> |
29 | 32 |
|
30 | 33 | <category android:name="android.intent.category.LAUNCHER" /> |
31 | | - </intent-filter> |
| 34 | + </intent-filter> |
32 | 35 | </activity> |
33 | 36 |
|
34 | 37 | <activity |
|
51 | 54 | android:launchMode="standard" |
52 | 55 | android:multiprocess="true" |
53 | 56 | android:screenOrientation="sensorLandscape" |
54 | | - android:name=".MainActivity" |
| 57 | + android:name=".MainActivity" |
55 | 58 | android:configChanges="keyboardHidden|orientation|screenSize"/> |
56 | 59 |
|
57 | 60 | <activity |
|
63 | 66 | android:screenOrientation="sensorLandscape" |
64 | 67 | android:name=".prefs.PojavPreferenceActivity" |
65 | 68 | android:configChanges="keyboardHidden|orientation|screenSize"/> |
66 | | - |
67 | 69 | </application> |
68 | 70 |
|
69 | 71 | </manifest> |
0 commit comments