PlayStore-以下APKs或应用包可在64位设备上使用,但仅具有本机32位代码:1

我正在更新我们的本机Android应用程序之一,当我上传apk(或捆绑包以播放商店时,我收到以下消息

PlayStore-以下APKs或应用包可在64位设备上使用,但仅具有本机32位代码:1

我未使用任何本地第3方库,我的apk却不包含lib文件夹

PlayStore-以下APKs或应用包可在64位设备上使用,但仅具有本机32位代码:1

这是我的buid.gradle供参考

  buildscript {
 ...

    }



    android {
        compileSdkVersion 29
        buildToolsVersion "28.0.3"
        defaultConfig {
            applicationid "xx.xxx.xxxxx"
            minSdkVersion 19
            targetSdkVersion 29
            versionCode 9
            versionName '1.3'
            multiDexEnabled true

        }



    dependencies {
        implementation 'com.google.android.material:material:1.0.0'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
        implementation 'com.google.android.gms:play-services-vision:19.0.0'
        implementation 'com.google.firebase:firebase-analytics:17.2.1'
        implementation 'com.google.android.gms:play-services-location:17.0.0'
        implementation 'com.edwardvanraak:MaterialBarcodeScanner:0.0.6-ALPHA'


        compile('it.sephiroth.android.library.horizontallistview:hlistview:1.2.2') {
            exclude group: 'com.android.support',module: 'support-v4'
        }
        implementation 'de.greenrobot:eventbus:2.4.0'
        implementation 'com.mcxiaoke.volley:library:1.0.19'
        // Google Play Services
        compile('com.github.johnkil.android-robototextview:robototextview:4.0.0') {
            exclude group: 'com.android.support',module: 'appcompat-v7'

        }
        compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
            transitive = true
        }


        apply plugin: 'com.google.gms.google-services'

    }
x1457007 回答:PlayStore-以下APKs或应用包可在64位设备上使用,但仅具有本机32位代码:1

该问题不是由任何本机依赖性引起的,因为我的项目没有这种依赖性。我通过在仅支持32位体系结构的GooglePlay上禁用较早的版本来解决了该问题。

本文链接:https://www.f2er.com/3124564.html

大家都在问