Android 谷歌播放-你的设备不是';t与此版本兼容-ASUS Transformer TF101

Android 谷歌播放-你的设备不是';t与此版本兼容-ASUS Transformer TF101,android,google-play,android-manifest,Android,Google Play,Android Manifest,当在我的华硕Transformer平板电脑上的Google Play中查看我的应用程序时,我看到以下消息 Your device isn't compatible with this version 这是我的清单文件 <?xml version='1.0' encoding='utf-8'?> <manifest android:hardwareAccelerated="true" android:versionCode="3" android:versi

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

Your device isn't compatible with this version
这是我的清单文件

<?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>


我的清单中是否有任何东西会导致此设备不兼容?

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

最初只是一个手机应用程序

为平板电脑优化而重新设计

我想我只需要将这个权限标记为
required=“false”
,因为平板电脑没有手机<代码>

我的困惑是
,在第十次阅读这篇文章后,我终于抓住了它

我需要显式地将
添加到我的清单中

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

当然,如果您有需要使用手机的功能,您需要在运行时对没有手机的设备进行适当处理

添加到清单中也增加了对AsusTransformer TF101G的支持

我希望这对其他人有帮助