gpt4 book ai didi

android - 无法使用 gradle 3.0 解析 rxjava2

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:10:31 27 4
gpt4 key购买 nike

Hare 是我的应用程序 gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.atumanin.testandroidannotations"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.1.18"

javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath true
}
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'io.reactivex.rxjava2:rxjava:2.1.6'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
}

这是我的项目gradle:

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
}
}

allprojects {
repositories {
google()
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

如果我尝试构建项目,我得到错误:

Could not resolve io.reactivex.rxjava2:rxjava:2.1.6.

Could not resolve io.reactivex.rxjava2:rxandroid:2.0.1.

我尝试清理、重建项目并使缓存无效。没有任何帮助。我还尝试使用 compile 而不是 implementation。我也尝试了这两个库的不同版本,但也没有成功。

最佳答案

它会报错,因为 rxjava 的官方版本是 2.1.5

只需更改以下代码行

implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
implementation 'io.reactivex.rxjava2:rxjava:2.1.5'

Official documentation

关于android - 无法使用 gradle 3.0 解析 rxjava2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47288102/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com