Fug*_*gue 6 java android build gradle apk
当生成签名的APK时,我得到以下错误消息:
Cannot find a version of 'com.google.code.findbugs:jsr305' that satisfies the version constraints:
Dependency path 'XX:app:unspecified' --> 'androidx.test.espresso:espresso-core:3.1.2-alpha01' --> 'com.google.code.findbugs:jsr305:2.0.1'
Constraint path 'XX:app:unspecified' --> 'com.google.code.findbugs:jsr305' strictly '1.3.9' because of the following reason: debugRuntimeClasspath uses version 1.3.9
Run Code Online (Sandbox Code Playgroud)
这是我的应用程序:gradle
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.XX.XX"
minSdkVersion 25
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.guava:guava:22.0-android'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
}
Run Code Online (Sandbox Code Playgroud)
但是,如果我为调试而构建,则工作正常,但是当我生成签名版本时,我收到此消息,香港专业教育学院试图谷歌搜索,但似乎找不到正确的答案。
小智 5
我今天遇到了类似的问题,发现了这个:https : //github.com/trello/RxLifecycle/issues/154
通过在依赖项添加以下内容的 (module:app) 中编辑 Gradle Scripts build.gradle 来解决我的问题:
androidTestImplementation 'com.google.code.findbugs:jsr305:1.3.9'
Run Code Online (Sandbox Code Playgroud)
我最初尝试了不同的版本号,但收到一个错误,告诉我要使用哪个版本,因此您可能需要尝试几次。