生成签名的apk时如何在Android Studio中修复“错误:无法在单个dex文件中容纳请求的类(#方法:66653> 65536)”

时间:2019-05-30 17:16:51

标签: java android

我正在尝试生成签名的APK,以便可以将我的应用导出到Google Play商店。但是我一直收到相同的错误。有什么要解决的。

apply plugin: 'com.android.application'

    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "com.example.sean.monacoball"
            minSdkVersion 15
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner 
    "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 
    'proguard-rules.pro'
            }
        }
    }

    dependencies {
        implementation fileTree(include: ['*.jar'], dir: 'libs')
        implementation 'com.android.support:appcompat-v7:12.0.1'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.android.gms:play-services:12.0.1'
    }
}

深度错误:

Error

1 个答案:

答案 0 :(得分:1)

按照Google Play services setup guide

  

注意:请勿使用组合的play-services目标。它带来了数十个库,使您的应用程序膨胀。而是仅指定您的应用使用的特定Google Play服务API。

使用com.google.android.gms:play-services:12.0.1时,您将引入每个 Google Play服务库。您应该切换为仅使用实际使用的库。几乎可以肯定,这将使您处于单个dex文件的64k method limit下。