https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v
- Right click on the Windows button and select 'Apps and Features'.
- Select Programs and Features on the right under related settings.
- Select Turn Windows Features on or off.
- Select Hyper-V and click OK.
- Turn ON the System.
- Press F2 key at startup BIOS Setup.
- Press the right arrow key to Advanced tab, Select Virtualization Technology and then press the Enter key.
- Select Enabled and press the Enter key.
- Press the F10 key and select Yes and press the Enter key to save changes and Reboot into Windows.
- check : Help -> SDK manager -> SDK Tools -> □ Intel x86 Emulator Accelerator (HAXM installer)
- V3. reference : https://github.com/ReactiveX/RxAndroid
- V2. reference : https://github.com/ReactiveX/RxAndroid/tree/2.x
- In build.gradle (Module : My_Application.app)
- Add this dependency
dependencies {
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
// Because RxAndroid releases are few and far between, it is recommended you also
// explicitly depend on RxJava's latest version for bug fixes and new features.
// (see https://github.com/ReactiveX/RxJava/releases for latest 3.x.x version)
implementation 'io.reactivex.rxjava3:rxjava:3.0.0'
}
dependencies {
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
// Because RxAndroid releases are few and far between, it is recommended you also
// explicitly depend on RxJava's latest version for bug fixes and new features.
// (see https://github.com/ReactiveX/RxJava/releases for latest 2.x.x version)
implementation 'io.reactivex.rxjava2:rxjava:2.x.x'
}
android studio -> file -> Sync Project with Gradle Files
- In build.gradle (project : My_Application)
- comment JCenter
allprojects {
repositories {
google()
mavenCentral()
// jcenter() // Warning: this repository is going to shut down soon
}
}
[Book] RxJava 프로그래밍 RxJava version2 document