APK被Google Store拒绝以实现64位兼容性

时间:2019-10-19 12:06:33

标签: android-studio google-play 64-bit

我知道以前已经解决了这个问题,但是进一步的建议会有所帮助。

请在下面找到我的礼物:

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'


android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'
    useLibrary  'org.apache.http.legacy'

    defaultConfig {
        applicationId "com.test.app"
        minSdkVersion 24
        targetSdkVersion 28
        multiDexEnabled true
        ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'

    }

    buildTypes {
        release {

            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
        }
    }

    lintOptions {
        disable "ResourceType"
    }
}

ext {
    googlePlayServicesVersion = "4.1.0"
}


dependencies {

    implementation files('libs/icu4j-64_2.jar')
    implementation files('libs/jsoup-1.6.3.jar')

    implementation files('libs/ksoap2-android-assembly-2.6.0-jar-with-dependencies.jar')
    implementation files('libs/zip4j-1.3.2.jar')


    implementation('com.crashlytics.sdk.android:crashlytics:2.9.9@aar')     {
        transitive = true;
    }

    implementation 'com.facebook.android:facebook-android-sdk:4.38.1'
    // Google
    implementation 'com.google.android.gms:play-services-auth:16.0.1'

    implementation'com.google.firebase:firebase-auth:16.1.0'

    // Firebase
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.firebase:firebase-core:16.0.3'


    implementation project(':pdflibrary')
    implementation 'com.android.support:support-compat:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:customtabs:28.0.0'

    implementation'junit:junit:4.12'

    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'

    implementation 'com.google.android.gms:play-services-flags:16.0.1'

}

我不确定哪个库引起了错误,我只发现icu4j支持64位,但是提到了另一个库,其中提到了更新是否支持64位。

0 个答案:

没有答案