首页 > 解决方案 > 此应用不再与您的设备兼容

问题描述

我已将我的第一个应用程序上传到使用最新 Rad Studio Rio 版本 (10.3.2) 编译的 Google Play 商店。使用其中一款平板电脑时,我使用 Play Console 应用测试该应用时说:

您的设备与此版本不兼容

该应用程序旨在在平板电脑上运行,但也可以在手机上运行。使用 Play Console(通过 Web)时,我被告知该应用程序与我的某些设备不兼容,特别是与我用来测试该应用程序的平板电脑完全相同。

我已经按照这里的指南进行操作

我该如何推进这件事?

这是 RAD 工作室为我生成的应用程序清单

<!-- BEGIN_INCLUDE(manifest) -->``
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="%package%"
        android:versionCode="%versionCode%"
        android:versionName="%versionName%"
        android:installLocation="%installLocation%">

    <!-- This is the platform API where NativeActivity was introduced. -->
 <uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="%targetSdkVersion%" />
<%uses-permission%>
    <uses-feature android:glEsVersion="0x00020000" android:required="True"/>
    <application android:persistent="%persistent%" 
        android:restoreAnyVersion="%restoreAnyVersion%" 
        android:label="%label%" 
        android:debuggable="%debuggable%" 
        android:largeHeap="%largeHeap%"
        android:icon="%icon%"
        android:theme="%theme%"
        android:hardwareAccelerated="%hardwareAccelerated%">

<%application-meta-data%>
        <%services%>
        <!-- Our activity is a subclass of the built-in NativeActivity framework class.
             This will take care of integrating with our NDK code. -->
        <activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
                android:label="%activityLabel%"
                android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
                android:launchMode="singleTask">
            <!-- Tell NativeActivity the name of our .so -->
            <meta-data android:name="android.app.lib_name"
                android:value="%libNameValue%" />
            <intent-filter>  
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter> 
        </activity>
        <%activity%>
        <%receivers%>
    </application>
</manifest>

标签: androidgoogle-playfiremonkey

解决方案


好的,在这里回答我自己的问题。我不知道 Google 控制台会为您的应用显示不兼容设备的列表。如果您选择一个,它将显示导致不兼容的项目。在我的情况下(虽然我不记得选择它,因为我的应用程序不需要它)是电话。


推荐阅读