生成签名apk Android gradle 3.1.1的发布版本时出现问题

时间:2018-05-08 07:00:02

标签: android android-gradle build.gradle

Please find below the screen shot for the issue  任何帮助都会提前深深感激。

当我将gradle版本更改为3.0.1然后它适用于签名apk的调试和发布版本,但是当我保留它3.1.1 ..它给了我同样的问题..

1 个答案:

答案 0 :(得分:6)

  • 首先升级版本& 更新您的Android Studio。
  • 检查 PROXY

在第一次

dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:3.2.0'
    }

阅读错误日志

您应拨打 implementation ,而不是 compile

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
   implementation "com.android.support:support-v4:****" // use api

然后

 lintOptions {
                checkReleaseBuilds false
                disable 'MissingTranslation'
                abortOnError false
            }

然后 Clean-Rebuild-Restart IDE