Android: Add metadata to the AndroidManifest.xml file to inform the play store we can run on large screen devices.

This commit is contained in:
Rom Walton 2013-05-30 12:02:37 -04:00
parent 65f77933cc
commit eaee966acd
1 changed files with 9 additions and 2 deletions

View File

@ -24,8 +24,15 @@
android:versionName="7.1.3"
android:installLocation="internalOnly" > <!-- installation on SD card would break boot receiver -->
<!-- CAUTION: specifiying target sdk can change the layout! android:targetSdkVersion="15"-->
<!-- Add Google Play store metadata informing the store we can run on tablets and other large screen devices -->
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:anyDensity="true"
android:largeScreens="true" />
<!-- CAUTION: specifiying target sdk can change the layout! android:targetSdkVersion="15"-->
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>