Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何创建与我的平板电脑兼容的 AndroidManifest.template 应用程序。在生产中在我的平板电脑上运行良好,但发送到 Play 商店时没有出现在平板电脑列表中。在XE5中没有设置
问候
您可以编辑AndroidManifest.xml项目的文件,并添加supports-screens元素:
AndroidManifest.xml
supports-screens
<supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"/>
您可以通过使用File->OpenIDE 主菜单并导航到项目文件夹来打开该文件。
File->Open