我在IntelliJ上创建了新的Gradle Java项目,并像在Android Studio中一样添加了库。
Gradle没有获取库并进行编译。
构建文件。
group 'asynjava'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile "io.reactivex.rxjava2:rxjava:2.x.y"
}
我无法在我的java文件中导入库。 我有没有错过任何设置?
答案 0 :(得分:2)
compile 'io.reactivex.rxjava2:rxjava:2.1.2'
您必须指定完整的版本信息,特别是次要版本号。