0

在 Android Studio 上签名和发布(Build / Generate Signed Apk...)程序时会显示此错误。

  • 当我在没有签名的情况下运行程序时,我没有问题并且它可以正常运行,但是如果我使用签名文件,我会遇到这个错误。

Stacktrace 截图 1

Stacktrace 截图 2

应用程序 build.gradle 代码:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 16
        targetSdkVersion 27
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.google.firebase:firebase-crash:11.8.0'
    ...
    implementation 'com.path:android-priority-jobqueue:1.1.2'
    implementation 'com.birbit:android-priority-jobqueue:2.0.1'
    implementation 'com.android.volley:volley:1.1.0'
    ...
}
apply plugin: 'com.google.gms.google-services'
4

1 回答 1

1

您的项目包含的依赖库有问题。

代替

编译'com.path:android-priority-jobqueue:1.1.2'

compile ('com.path:android-priority-jobqueue:1.1.2'){
        exclude group: 'com.google.android'
    }
于 2018-02-04T10:49:09.530 回答