Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Kick the targetSdkVersion in the AndroidManifest XML file t…
…o 18. Since this app basically works on 4.x.x, we don't need to make compatibility modes kick in for anything above 4.0.0.

Also very minor cleanup to the XML.
  • Loading branch information
lioncash committed Sep 10, 2013
1 parent ce5f80b commit 8ceb726
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Source/Android/AndroidManifest.xml
Expand Up @@ -7,10 +7,10 @@

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="14" />
android:targetSdkVersion="18" />

<uses-feature android:glEsVersion="0x00020000" />

<uses-feature android:glEsVersion="0x00020000" >
</uses-feature>
<uses-feature android:name="android.hardware.screen.landscape" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down Expand Up @@ -40,8 +40,8 @@

<activity
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
android:label="@string/settings" >
</activity>
android:label="@string/settings" />

</application>

</manifest>

0 comments on commit 8ceb726

Please sign in to comment.