how to create a AndroidManifest.template app to be compatible with my tablet. In production works well on my tablet, but when sending to Play store does not appear in the list of tablets. In XE5 has no where to set
Regards
how to create a AndroidManifest.template app to be compatible with my tablet. In production works well on my tablet, but when sending to Play store does not appear in the list of tablets. In XE5 has no where to set
Regards
You can edit the AndroidManifest.xml
file for your project, and add the supports-screens
element:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
You can open the file by using File->Open
from the IDE main menu and navigating to your project's folder.