此版本与Google Play 64位要求的本机应用程序兼容

问题描述 投票:0回答:1

在将APK上传到Play商店时,我收到一条警告,提示“此版本符合Google Play 64位要求。”。当我使用Android Studio分析应用架构时。我可以在lib文件夹下找到两个“ .so”文件。这是该屏幕截图:enter image description here

我还向我的gradle文件和使用的库中添加了以下行:

 defaultConfig {
        applicationId "com.demo.user"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 4
        multiDexEnabled true
        versionName "1.3"
        ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
        vectorDrawables.useSupportLibrary = true

        testInstrumentationRunner "android.support.rounded_green_cremeway.runner.AndroidJUnitRunner"
    }
splits {
        abi {
            include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
        }
    }

[上传签名的Apk到商店玩游戏时,我遇到了以下问题。如果需要其他操作,请告诉我。

enter image description here

任何帮助将不胜感激!!!!

android 32bit-64bit
1个回答
1
投票

这是信息,而不是警告-重大而非常重要的区别。

64Bit兼容性仅告诉您,all您的本机部分可以作为64Bit使用。

这是好事,不是警告。您想要。

反过来,您会得到警告:如果有任何可用的组件,[作为32Bit(因此兼容[[not 64Bit)。

您的项目都可以。如果您看到此信息,请感到高兴。
© www.soinside.com 2019 - 2024. All rights reserved.