gpt4 book ai didi

android - Google Play - 您的设备与此版本不兼容 - ASUS Transformer TF101

转载 作者:太空狗 更新时间:2023-10-29 14:16:53 24 4
gpt4 key购买 nike

在我的 ASUS Transformer 平板电脑上查看我在 Google Play 中的应用程序时,我看到以下消息

Your device isn't compatible with this version

这是我的 list 文件。

<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true"
android:versionCode="3"
android:versionName="1.0.2"
android:windowSoftInputMode="adjustPan"
package="com.sheffieldlentinepc.sentenceestimator"
xmlns:android="http://schemas.android.com/apk/res/android">

<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />

<uses-permission android:name="android.permission.INTERNET" />

<!-- Required permission to check licensing. -->
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />

<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="18" />

<application
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:label="@string/app_name">

<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
android:label="@string/app_name"
android:name="SentenceEstimator"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:screenOrientation="portrait">

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>

</application>

</manifest>

我的 list 中是否有任何内容会导致此设备不兼容?

最佳答案

好的,我知道了!我的情况:

最初是一个手机应用

重新设计以优化平板电脑

我想将此权限标记为 required="false"这就是我所需要的,因为平板电脑没有手机。 <uses-permission android:name="android.permission.CALL_PHONE"
**android:required="false"** />

我的困惑是 <uses-permission/><uses-feature/>在第 10 次读完这篇文章后,我终于明白了。 http://developer.android.com/distribute/googleplay/quality/tablet.html#hardware-requirements

我需要明确添加 <uses-feature android:name="android.hardware.telephony" android:required="false" />到我的 list 。

上传到开发者控制台,您应该会看到“支持的设备”数量跳跃,在我的例子中是 541 台设备。

当然,如果您有需要使用手机的功能,您需要在运行时为没有手机的设备适本地处理它。

正在添加 <uses-feature android:name="android.hardware.telephony" android:required="false" /> list 中也添加了对 AsusTransformer TF101G 的支持!

我希望这对其他人有帮助!

关于android - Google Play - 您的设备与此版本不兼容 - ASUS Transformer TF101,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21047486/

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