本文介绍了应用程序是不符合的Galaxy Tab 3(GT-P5210)兼容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我上传应用程序Play商店,我不能对三星Galaxy Tab 3安装它只是告诉我,设备未对应,也没有道理。我在开发者控制台检查,它也被Galaxy Tab的3 7.0,Galaxy Tab的4和其他平板电脑不支持。这里是我的清单文件:

I uploaded an application to Play Store which I can't install on Samsung Galaxy Tab 3. It just tells me that device is uncompatible and no reason. I've checked in Developer's Console and it is also unsupported by Galaxy Tab 3 7.0, Galaxy Tab 4 and other tablets. Here's my manifest file:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="***"
    android:versionCode="2"
    android:versionName="1.0.1" >

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

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />

    <application
        android:name="***.App"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="***.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>
        <activity android:name="***.DocumentInfoActivity" />
        <activity android:name="***.ReaderActivity" />
        <activity
            android:name="***.ImageOverviewActivity"
            android:theme="@style/Theme.Transparent" />
        <activity
            android:name="***.AccountsActivity"
            android:windowSoftInputMode="stateHidden" />
        <activity android:name="***.SearchHelpActivity" />
        <activity
            android:name="***.DeveloperSettingsActivity"
            android:label="@string/preferences_title" />
    </application>

</manifest>

正如你可以看到有什么特别,可兼容性影响。能有在code例如一些隐藏的原因是什么?如何解决和测试呢?

As you can see there's nothing special which can influence on compatibility. Can there be some hidden reasons in code for example? How can I fix and test this?

我可以安装和SG标签3运行应用程序,避免Play商店。

I can install and run the app on SG Tab 3 avoiding Play Store.

推荐答案

我不是100%肯定,但它可能是,你的前置摄像头也没有自动对焦功能,这就是为什么你必须添加以下在AndroidManifest的.xml:

I'm not 100% sure but it could be, that your front facing camera has no autofocus, thats why you'd have to add following in your AndroidManifest.xml:

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

请让我知道,如果这个工作 - 事业,我是pretty肯定的是,一些persmissions是限制性

please let me know, if this worked - cause, I'm pretty sure, that some persmissions are to restrictive

编辑:

您可以测试修改,如果你上传新的APK Alpha和Beta测试模式。某些小时后您的测试帐户将receve更新,但它尚未公布。

you can test the modification, if you upload the new apk in alpha or beta mode. After some hours your test accounts will receve the update, but it's not published yet.

这篇关于应用程序是不符合的Galaxy Tab 3(GT-P5210)兼容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 16:36