其他分享
首页 > 其他分享> > android-应用突然与Google Play上的平板电脑不兼容

android-应用突然与Google Play上的平板电脑不兼容

作者:互联网

我的应用程序在Google Play上“可见”.我没有进行任何更改(我没有上传新的APK),并且应用程序突然与平板电脑不兼容.谢谢你的帮助.

看一下很简单的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fly.is.fun.unlocker"
android:versionCode="1"
android:versionName="1.0" >

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="fly.is.fun.unlocker.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

解决方法:

请检查它是否在任何设备或某些特定设备上不可见.

我有同样的问题.但这是Tab2特有的.
因为我使用的是CAMERA权限,所以Tab2没有自动对焦功能.

因此,我在AndroidManifest文件中添加了以下代码行,然后将新的APK上传到市场.

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />

现在,它在Google Play中可见.

还要检查Filters on Google Play

希望这可以帮助.

标签:compatibility,tablet,android
来源: https://codeday.me/bug/20191123/2066376.html