[Android] Fixed <uses-sdk> appears after <application> tag warning

This commit is contained in:
Jonathan De Wachter 2014-06-20 04:16:32 +02:00
parent 06b73f36bd
commit 9e3b466ee0

View File

@ -4,9 +4,12 @@
package="com.example.sfml"
android:versionCode="1"
android:versionName="1.0" >
<uses-feature android:glEsVersion="0x00010001" />
<uses-feature android:glEsVersion="0x00010001" />
<uses-sdk android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application android:label="@string/app_name"
android:icon="@drawable/sfml_logo"
android:hasCode="false"
@ -26,7 +29,4 @@
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="9"
android:targetSdkVersion="19" />
</manifest>