Skip to content

Commit

Permalink
Android: Fixed lint warning about order of elements in AndroidManifes…
Browse files Browse the repository at this point in the history
…t.xml.
  • Loading branch information
philippwiesemann committed Apr 13, 2015
1 parent 0fbd337 commit e97fc56
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions android-project/AndroidManifest.xml
Expand Up @@ -8,6 +8,15 @@
android:versionName="1.0"
android:installLocation="auto">

<!-- Android 2.3.3 -->
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="12" />

<!-- OpenGL ES 2.0 -->
<uses-feature android:glEsVersion="0x00020000" />

<!-- Allow writing to external storage -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<!-- Create a Java class extending SDLActivity and place it in a
directory under src matching the package, e.g.
src/com/gamemaker/game/MyGame.java
Expand All @@ -33,12 +42,4 @@
</activity>
</application>

<!-- Android 2.3.3 -->
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="12" />

<!-- OpenGL ES 2.0 -->
<uses-feature android:glEsVersion="0x00020000" />

<!-- Allow writing to external storage -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>

0 comments on commit e97fc56

Please sign in to comment.