diff options
| author | lioncash <mathew1900@hotmail.com> | 2013-09-10 09:29:05 -0400 |
|---|---|---|
| committer | lioncash <mathew1900@hotmail.com> | 2013-09-10 09:29:05 -0400 |
| commit | 8ceb72612aa0f650fa0a7de6bb4beb69935c29f2 (patch) | |
| tree | 54b825703957e3bc70e3582349f01d03b6fa185a /Source/Android | |
| parent | ce5f80b151d2343879cea0168ff70fee17172b6d (diff) | |
[Android] Kick the targetSdkVersion in the AndroidManifest XML file to 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.
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/AndroidManifest.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Android/AndroidManifest.xml b/Source/Android/AndroidManifest.xml index 70bc5c1275..c80638bb38 100644 --- a/Source/Android/AndroidManifest.xml +++ b/Source/Android/AndroidManifest.xml @@ -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" /> @@ -40,8 +40,8 @@ <activity android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity" - android:label="@string/settings" > - </activity> + android:label="@string/settings" /> + </application> </manifest> |
