├── .gitignore ├── .idea ├── .gitignore ├── .name ├── AndroidProjectSystem.xml ├── compiler.xml ├── deploymentTargetSelector.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── aliahmed │ │ └── weatherapp │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── aliahmed │ │ │ └── weatherapp │ │ │ ├── MainActivity.kt │ │ │ ├── WeatherApp.kt │ │ │ └── ui │ │ │ ├── Navigation.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-anydpi-v33 │ │ └── ic_launcher.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── aliahmed │ └── weatherapp │ └── ExampleUnitTest.kt ├── core_ui ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── aliahmed │ │ └── core_ui │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── aliahmed │ │ │ └── core_ui │ │ │ ├── ErrorDialog.kt │ │ │ ├── FullScreenLoading.kt │ │ │ ├── NavigationItem.kt │ │ │ └── Routes.kt │ └── res │ │ └── drawable │ │ ├── current_weather.png │ │ └── weather_forecasting.png │ └── test │ └── java │ └── com │ └── aliahmed │ └── core_ui │ └── ExampleUnitTest.kt ├── data ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ └── java │ └── com │ └── aliahmed │ └── data │ ├── di │ ├── DataModule.kt │ └── RepositoryModule.kt │ ├── model │ ├── Astro.kt │ ├── BaseApiResponse.kt │ ├── Condition.kt │ ├── Current.kt │ ├── CurrentWeather.kt │ ├── Day.kt │ ├── Forecast.kt │ ├── Forecastday.kt │ ├── Hour.kt │ ├── Location.kt │ └── ServerErrorCode.kt │ ├── network │ ├── ApiException.kt │ ├── ApiService.kt │ ├── BaseHeadersInterceptor.kt │ ├── BaseURL.kt │ ├── Resource.kt │ └── ResultCallAdapterFactory.kt │ └── repository │ └── CurrentWeatherRepository.kt ├── features ├── .gitignore ├── build.gradle.kts ├── current_weather │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aliahmed │ │ │ └── current_weather │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── aliahmed │ │ │ └── current_weather │ │ │ ├── usecase │ │ │ └── CurrentWeatherUseCase.kt │ │ │ ├── view │ │ │ └── CurrentWeatherScreen.kt │ │ │ └── viewmodel │ │ │ └── CurrentWeatherViewModel.kt │ │ └── test │ │ └── java │ │ └── com │ │ └── aliahmed │ │ └── current_weather │ │ └── CurrentWeatherViewModelTest.kt ├── forecasting │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aliahmed │ │ │ └── forecasting │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── aliahmed │ │ │ └── forecasting │ │ │ ├── usecase │ │ │ └── ForecastingUseCase.kt │ │ │ ├── view │ │ │ └── ForecastingScreen.kt │ │ │ └── viewmodel │ │ │ └── ForecastingViewModel.kt │ │ └── test │ │ └── java │ │ └── com │ │ └── aliahmed │ │ └── forecasting │ │ ├── ExampleUnitTest.kt │ │ ├── ForecastingViewModelTest.kt │ │ └── InstantTaskExecutorRule.java └── src │ └── main │ └── java │ └── com │ └── aliahmed │ └── features │ └── MyClass.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | WeatherApp -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/aliahmed/weatherapp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/androidTest/java/com/aliahmed/weatherapp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/WeatherApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/WeatherApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/ui/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/ui/Navigation.kt -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/aliahmed/weatherapp/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/java/com/aliahmed/weatherapp/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/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/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/aliahmed/weatherapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/app/src/test/java/com/aliahmed/weatherapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /core_ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core_ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/build.gradle.kts -------------------------------------------------------------------------------- /core_ui/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core_ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/proguard-rules.pro -------------------------------------------------------------------------------- /core_ui/src/androidTest/java/com/aliahmed/core_ui/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/androidTest/java/com/aliahmed/core_ui/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /core_ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /core_ui/src/main/java/com/aliahmed/core_ui/ErrorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/java/com/aliahmed/core_ui/ErrorDialog.kt -------------------------------------------------------------------------------- /core_ui/src/main/java/com/aliahmed/core_ui/FullScreenLoading.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/java/com/aliahmed/core_ui/FullScreenLoading.kt -------------------------------------------------------------------------------- /core_ui/src/main/java/com/aliahmed/core_ui/NavigationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/java/com/aliahmed/core_ui/NavigationItem.kt -------------------------------------------------------------------------------- /core_ui/src/main/java/com/aliahmed/core_ui/Routes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/java/com/aliahmed/core_ui/Routes.kt -------------------------------------------------------------------------------- /core_ui/src/main/res/drawable/current_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/res/drawable/current_weather.png -------------------------------------------------------------------------------- /core_ui/src/main/res/drawable/weather_forecasting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/main/res/drawable/weather_forecasting.png -------------------------------------------------------------------------------- /core_ui/src/test/java/com/aliahmed/core_ui/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/core_ui/src/test/java/com/aliahmed/core_ui/ExampleUnitTest.kt -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /data/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/build.gradle.kts -------------------------------------------------------------------------------- /data/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/proguard-rules.pro -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/di/DataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/di/DataModule.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/di/RepositoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/di/RepositoryModule.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Astro.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Astro.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/BaseApiResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/BaseApiResponse.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Condition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Condition.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Current.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Current.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/CurrentWeather.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/CurrentWeather.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Day.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Day.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Forecast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Forecast.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Forecastday.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Forecastday.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Hour.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Hour.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/Location.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/Location.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/model/ServerErrorCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/model/ServerErrorCode.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/network/ApiException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/network/ApiException.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/network/ApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/network/ApiService.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/network/BaseHeadersInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/network/BaseHeadersInterceptor.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/network/BaseURL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/network/BaseURL.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/network/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/network/Resource.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/network/ResultCallAdapterFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/network/ResultCallAdapterFactory.kt -------------------------------------------------------------------------------- /data/src/main/java/com/aliahmed/data/repository/CurrentWeatherRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/data/src/main/java/com/aliahmed/data/repository/CurrentWeatherRepository.kt -------------------------------------------------------------------------------- /features/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /features/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/build.gradle.kts -------------------------------------------------------------------------------- /features/current_weather/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /features/current_weather/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/build.gradle.kts -------------------------------------------------------------------------------- /features/current_weather/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/current_weather/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/proguard-rules.pro -------------------------------------------------------------------------------- /features/current_weather/src/androidTest/java/com/aliahmed/current_weather/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/src/androidTest/java/com/aliahmed/current_weather/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /features/current_weather/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/current_weather/src/main/java/com/aliahmed/current_weather/usecase/CurrentWeatherUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/src/main/java/com/aliahmed/current_weather/usecase/CurrentWeatherUseCase.kt -------------------------------------------------------------------------------- /features/current_weather/src/main/java/com/aliahmed/current_weather/view/CurrentWeatherScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/src/main/java/com/aliahmed/current_weather/view/CurrentWeatherScreen.kt -------------------------------------------------------------------------------- /features/current_weather/src/main/java/com/aliahmed/current_weather/viewmodel/CurrentWeatherViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/src/main/java/com/aliahmed/current_weather/viewmodel/CurrentWeatherViewModel.kt -------------------------------------------------------------------------------- /features/current_weather/src/test/java/com/aliahmed/current_weather/CurrentWeatherViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/current_weather/src/test/java/com/aliahmed/current_weather/CurrentWeatherViewModelTest.kt -------------------------------------------------------------------------------- /features/forecasting/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /features/forecasting/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/build.gradle.kts -------------------------------------------------------------------------------- /features/forecasting/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/forecasting/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/proguard-rules.pro -------------------------------------------------------------------------------- /features/forecasting/src/androidTest/java/com/aliahmed/forecasting/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/androidTest/java/com/aliahmed/forecasting/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /features/forecasting/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /features/forecasting/src/main/java/com/aliahmed/forecasting/usecase/ForecastingUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/main/java/com/aliahmed/forecasting/usecase/ForecastingUseCase.kt -------------------------------------------------------------------------------- /features/forecasting/src/main/java/com/aliahmed/forecasting/view/ForecastingScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/main/java/com/aliahmed/forecasting/view/ForecastingScreen.kt -------------------------------------------------------------------------------- /features/forecasting/src/main/java/com/aliahmed/forecasting/viewmodel/ForecastingViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/main/java/com/aliahmed/forecasting/viewmodel/ForecastingViewModel.kt -------------------------------------------------------------------------------- /features/forecasting/src/test/java/com/aliahmed/forecasting/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/test/java/com/aliahmed/forecasting/ExampleUnitTest.kt -------------------------------------------------------------------------------- /features/forecasting/src/test/java/com/aliahmed/forecasting/ForecastingViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/test/java/com/aliahmed/forecasting/ForecastingViewModelTest.kt -------------------------------------------------------------------------------- /features/forecasting/src/test/java/com/aliahmed/forecasting/InstantTaskExecutorRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/forecasting/src/test/java/com/aliahmed/forecasting/InstantTaskExecutorRule.java -------------------------------------------------------------------------------- /features/src/main/java/com/aliahmed/features/MyClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/features/src/main/java/com/aliahmed/features/MyClass.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmedbd/WeatherApp-Android-Clean-Architecture-Jetpack-Compose-Kotlin-Hilt-Flow/HEAD/settings.gradle --------------------------------------------------------------------------------