无法解析符号 AndroidSchedulers
我使用的是 RxJava 的 2.0.0 版,似乎我无法访问 .我无法通过 RxJava 访问主线程AndroidSchedulers
我使用的是 RxJava 的 2.0.0 版,似乎我无法访问 .我无法通过 RxJava 访问主线程AndroidSchedulers
AndroidSchedulers
类是RxAndroid
库的一部分。将其添加到应用的 :build.gradle
在Gradle v3.0之前:
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
自 Gradle v3.0 起:
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
返回旧版本:
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.6'
然后到较新版本:
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.1'
听起来很奇怪,但它的工作原理