This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static class ImmediateSchedulersRule implements TestRule { | |
| @Override | |
| public Statement apply(final Statement base, Description description) { | |
| return new Statement() { | |
| @Override | |
| public void evaluate() throws Throwable { | |
| RxJavaPlugins.setIoSchedulerHandler(scheduler -> | |
| Schedulers.trampoline()); | |
| RxJavaPlugins.setComputationSchedulerHandler(scheduler -> | |
| Schedulers.trampoline()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.android.application' | |
| apply plugin: 'kotlin-android' | |
| apply plugin: 'kotlin-android-extensions' | |
| android { | |
| compileSdkVersion 25 | |
| buildToolsVersion "25.0.2" | |
| defaultConfig { | |
| applicationId "com.example.kxt" | |
| minSdkVersion 15 |
OlderNewer