├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── github │ │ └── leavesczy │ │ └── reactivehttpsamples │ │ ├── MainActivity.kt │ │ ├── MainApplication.kt │ │ ├── adapter │ │ ├── AreaAdapter.kt │ │ └── DailyForecastAdapter.kt │ │ ├── base │ │ ├── BaseActivity.kt │ │ ├── BaseFragment.kt │ │ └── BaseViewModel.kt │ │ ├── core │ │ ├── http │ │ │ ├── ApiService.kt │ │ │ ├── AppRemoteDataSource.kt │ │ │ ├── HttpConfig.kt │ │ │ └── Interceptor.kt │ │ ├── mode │ │ │ ├── HttpWrapMode.kt │ │ │ └── WeatherBean.kt │ │ └── viewmodel │ │ │ ├── SingleRequestViewModel.kt │ │ │ ├── TogetherRequestViewModel.kt │ │ │ └── weather │ │ │ ├── CityViewModel.kt │ │ │ ├── CountyViewModel.kt │ │ │ ├── ProvinceViewModel.kt │ │ │ └── WeatherViewModel.kt │ │ └── ui │ │ ├── SingleRequestActivity.kt │ │ ├── TogetherRequestActivity.kt │ │ └── weather │ │ ├── AreaActivity.kt │ │ ├── CityFragment.kt │ │ ├── CountyFragment.kt │ │ ├── ProvinceFragment.kt │ │ └── WeatherActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_area.xml │ ├── activity_main.xml │ ├── activity_single_request.xml │ ├── activity_together_request.xml │ ├── activity_weather.xml │ ├── fragment_area.xml │ ├── item_area.xml │ └── item_daily_forecast.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values-night-v23 │ └── themes.xml │ ├── values-night-v27 │ └── themes.xml │ ├── values-night │ └── themes.xml │ ├── values-v23 │ └── themes.xml │ ├── values-v27 │ └── themes.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ └── data_extraction_rules.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── key.jks ├── reactivehttp ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── github │ └── leavesczy │ └── reactivehttp │ ├── base │ ├── ReactiveActivity.kt │ ├── ReactiveFragment.kt │ └── ReactiveViewModel.kt │ ├── callback │ └── RequestCallback.kt │ ├── datasource │ ├── BaseRemoteDataSource.kt │ ├── RemoteDataSource.kt │ └── RemoteExtendDataSource.kt │ ├── exception │ └── HttpException.kt │ ├── mode │ └── IHttpWrapMode.kt │ └── viewmodel │ ├── UIActionEvent.kt │ └── UIActionEventObserver.kt └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /build 5 | /.idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/MainApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/adapter/AreaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/adapter/AreaAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/adapter/DailyForecastAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/adapter/DailyForecastAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/base/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/base/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/base/BaseFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/base/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/base/BaseViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/ApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/ApiService.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/AppRemoteDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/AppRemoteDataSource.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/HttpConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/HttpConfig.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/Interceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/http/Interceptor.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/mode/HttpWrapMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/mode/HttpWrapMode.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/mode/WeatherBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/mode/WeatherBean.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/SingleRequestViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/SingleRequestViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/TogetherRequestViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/TogetherRequestViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/CityViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/CityViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/CountyViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/CountyViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/ProvinceViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/ProvinceViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/WeatherViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/core/viewmodel/weather/WeatherViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/SingleRequestActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/SingleRequestActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/TogetherRequestActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/TogetherRequestActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/AreaActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/AreaActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/CityFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/CityFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/CountyFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/CountyFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/ProvinceFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/ProvinceFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/WeatherActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/java/github/leavesczy/reactivehttpsamples/ui/weather/WeatherActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/activity_area.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_single_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/activity_single_request.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_together_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/activity_together_request.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/activity_weather.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/fragment_area.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/item_area.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_daily_forecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/layout/item_daily_forecast.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night-v23/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values-night-v23/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night-v27/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values-night-v27/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v23/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values-v23/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v27/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values-v27/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/jitpack.yml -------------------------------------------------------------------------------- /key.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/key.jks -------------------------------------------------------------------------------- /reactivehttp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /reactivehttp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/build.gradle -------------------------------------------------------------------------------- /reactivehttp/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reactivehttp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/proguard-rules.pro -------------------------------------------------------------------------------- /reactivehttp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/base/ReactiveActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/base/ReactiveActivity.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/base/ReactiveFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/base/ReactiveFragment.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/base/ReactiveViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/base/ReactiveViewModel.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/callback/RequestCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/callback/RequestCallback.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/datasource/BaseRemoteDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/datasource/BaseRemoteDataSource.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/datasource/RemoteDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/datasource/RemoteDataSource.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/datasource/RemoteExtendDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/datasource/RemoteExtendDataSource.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/exception/HttpException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/exception/HttpException.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/mode/IHttpWrapMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/mode/IHttpWrapMode.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/viewmodel/UIActionEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/viewmodel/UIActionEvent.kt -------------------------------------------------------------------------------- /reactivehttp/src/main/java/github/leavesczy/reactivehttp/viewmodel/UIActionEventObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/reactivehttp/src/main/java/github/leavesczy/reactivehttp/viewmodel/UIActionEventObserver.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavesCZY/ReactiveHttp/HEAD/settings.gradle --------------------------------------------------------------------------------