(内部测试)此应用程序不适用于您的设备,因为它是由旧版本的 android 制作的

(Internal testing) This app isn’t available for your device because it was made from an older version of android

提问人:Duliba Ionut 提问时间:11/3/2023 更新时间:11/4/2023 访问量:68

问:

我已经在 playstore 中发布了应用程序,以便使用 targetSdkVersion 33 进行内部测试。一切都很好,直到我尝试测试并将其下载到我的 Android 手机上,它说“此应用程序不适用于您的设备,因为它是由旧版本的 android 制作的”我有 Android 12。

有人对这个问题有任何想法吗?为什么会这样? 应该适用于 Android 13。

enter image description here

我的build.gradle

 compileSdk 33
    defaultConfig {
        applicationId "com.portlmedia.streets"
        minSdkVersion 24
        targetSdkVersion 33
        versionCode 5
        versionName "1.0.2"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        buildConfigField "String", "WEBVIEW_URL", "\"https://streets.portlmedia.com\""
        ndk {
            abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86'
        }
    }

java android-fragments google-play target-sdk

评论


答:

0赞 user16930239 11/4/2023 #1

它可能缺少必需的功能,但错误消息是错误的(发生这种情况)。

尝试:

abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'