Cannor解析符号'rx'

时间:2018-02-11 08:37:51

标签: android android-studio rx-java2

我使用1.3.4版本,一切都很好,但我开始使用2.1.9版本,我错了“Cannor解决符号'rx'” 这是我的Gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
defaultConfig {
    applicationId "com.example.max.project_oo1_client_server"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.9'
compile 'com.squareup.okhttp3:okhttp:3.9.1'

}

1 个答案:

答案 0 :(得分:0)

问题在于您的导入语句。

搜索:import rx.Observable;

替换:import io.reactivex.Observable;

对所有课程重复此操作。

你可以使用搜索和替换,但要小心:

Windows和Linux / Ubuntu上的

Ctrl + Shift + R

Mac OS X上的

Cmd + Shift + R