Skip to content

Commit

Permalink
small refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyVanNeck authored Aug 31, 2020
1 parent 50b5b61 commit f55c0c8
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.kdt.pojavlaunch">

<uses-feature android:glEsVersion="0x00020000"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
android:largeHeap="true"
android:largeHeap="true"
android:allowBackup="true"
android:name=".PojavApplication"
android:theme="@style/AppTheme"
android:name=".PojavApplication"
android:theme="@style/AppTheme"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:roundIcon="@drawable/ic_launcher"
android:resizeableActivity="true">
android:roundIcon="@drawable/ic_launcher"
android:resizeableActivity="true">
<meta-data
android:name="android.max_aspect"
android:value="ratio_float"/>
Expand All @@ -28,7 +31,7 @@
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</intent-filter>
</activity>

<activity
Expand All @@ -51,7 +54,7 @@
android:launchMode="standard"
android:multiprocess="true"
android:screenOrientation="sensorLandscape"
android:name=".MainActivity"
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"/>

<activity
Expand All @@ -63,7 +66,6 @@
android:screenOrientation="sensorLandscape"
android:name=".prefs.PojavPreferenceActivity"
android:configChanges="keyboardHidden|orientation|screenSize"/>

</application>

</manifest>

0 comments on commit f55c0c8

Please sign in to comment.