gpt4 book ai didi

仅适用于平板电脑的 Android 应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:21:46 26 4
gpt4 key购买 nike

我为 Android 平板电脑设计了我的应用程序。但它只能安装在 Android 平板电脑上。为此,我尝试了以下方法。

  1. supports-screens
  2. android.hardware.telephony
  3. compatiblity-screens
  4. android.permission.CALL_PHONE

但是以上所有场景都失败了。 Android 应用程序同时安装了 Google Nexus S 4.1.0 手机和 Acer Iconia A500 平板电脑。有没有其他方法可以限制 Android 应用程序仅适用于 Android 平板电脑。?

最佳答案

根据 documentation这些线路适合您!

<manifest ... >
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
...
<application ... >
...
</application>
</manifest>

过滤应用于市场应用!这意味着您无法通过从 adb 安装应用程序或仅从 apk 运行它来真正测试它!可能被 Google Play 过滤的 APK 仍然可以兼容,并且可以安装在来自“未知来源”的设备上。

您可以在市场查看所有应用程序> 选择您的应用程序> APK > 支持的设备 | 上传 APK 时查看过滤的应用方式。排除的设备

  • 排除的设备:将允许您手动排除特定设备。

关于仅适用于平板电脑的 Android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15895391/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com