Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed Android Lint warning in AndroidManifest.xml.
Browse files Browse the repository at this point in the history
If targetSdkVersion not set it becomes same as minSdkVersion and causes warning.
  • Loading branch information
philippwiesemann committed Jun 9, 2013
1 parent 3299801 commit da1eba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android-project/AndroidManifest.xml
Expand Up @@ -31,7 +31,7 @@
</application>

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

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

0 comments on commit da1eba8

Please sign in to comment.