├── .gitignore ├── README.md ├── RecipesApp.png ├── WeatherAppScreenshots.png ├── app ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── acme │ │ └── weather │ │ └── app │ │ └── model │ │ └── repository │ │ └── database │ │ └── WeatherEntityCrudTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── acme │ │ │ └── weather │ │ │ ├── DebugTree.kt │ │ │ ├── WeatherApplication.kt │ │ │ ├── app │ │ │ ├── model │ │ │ │ ├── api │ │ │ │ │ ├── ForecastData.kt │ │ │ │ │ ├── Location.kt │ │ │ │ │ ├── Temperature.kt │ │ │ │ │ ├── Weather.kt │ │ │ │ │ └── WeatherIcon.kt │ │ │ │ └── repository │ │ │ │ │ ├── WeatherRepository.kt │ │ │ │ │ ├── database │ │ │ │ │ ├── WeatherDatabase.kt │ │ │ │ │ ├── dao │ │ │ │ │ │ └── WeatherDao.kt │ │ │ │ │ └── entity │ │ │ │ │ │ ├── TemperatureEntity.kt │ │ │ │ │ │ └── WeatherEntity.kt │ │ │ │ │ ├── geolocation │ │ │ │ │ └── WeatherLocationService.kt │ │ │ │ │ └── network │ │ │ │ │ ├── WeatherApi.kt │ │ │ │ │ ├── WeatherApiResponseModels.kt │ │ │ │ │ └── WeatherForecastService.kt │ │ │ ├── view │ │ │ │ ├── BindingAdapters.java │ │ │ │ ├── LocationDialogFragment.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── WeatherDetailFragment.kt │ │ │ │ ├── WeatherListFragment.kt │ │ │ │ └── WeatherRecyclerAdapter.kt │ │ │ └── viewmodel │ │ │ │ ├── WeatherDetailViewModel.kt │ │ │ │ ├── WeatherItemViewModel.kt │ │ │ │ ├── WeatherListViewModel.kt │ │ │ │ └── WeatherViewModelFactory.java │ │ │ ├── common │ │ │ ├── di │ │ │ │ ├── AppComponent.kt │ │ │ │ ├── AppInjector.java │ │ │ │ ├── AppModule.kt │ │ │ │ ├── FragmentBuildersModule.java │ │ │ │ ├── Injectable.kt │ │ │ │ ├── MainActivityModule.java │ │ │ │ ├── NetworkModule.kt │ │ │ │ ├── ViewModelKey.java │ │ │ │ └── ViewModelModule.java │ │ │ └── navigation │ │ │ │ ├── DialogNavHostFragment.kt │ │ │ │ ├── DialogNavigator.kt │ │ │ │ ├── NavigationExtensions.kt │ │ │ │ └── NavigationResult.kt │ │ │ └── security │ │ │ ├── view │ │ │ ├── EnterCredentials.kt │ │ │ └── SecureFragment.kt │ │ │ └── viewmodel │ │ │ └── AuthenticationViewModel.kt │ └── res │ │ ├── anim │ │ ├── fade_in.xml │ │ ├── fade_out.xml │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_out_left.xml │ │ └── slide_out_right.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── enter_credentials.xml │ │ ├── location_add_dialog.xml │ │ ├── weather_detail_fragment.xml │ │ ├── weather_item.xml │ │ └── weather_list_fragment.xml │ │ ├── menu │ │ ├── global_menu.xml │ │ ├── simulate_notification_with_deeplink.xml │ │ └── weather_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_cloudy.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ ├── ic_partlycloudy.png │ │ ├── ic_rainy.png │ │ ├── ic_snowy.png │ │ ├── ic_sunny.png │ │ └── ic_thunderstorm.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── navigation │ │ ├── login_graph.xml │ │ └── weather_graph.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── release │ └── java │ │ └── com │ │ └── acme │ │ └── weather │ │ ├── ReleaseTree.kt │ │ └── WeatherApplication.kt │ └── test │ └── java │ └── com │ └── acme │ └── weather │ └── app │ └── model │ └── api │ ├── TemperatureTest.kt │ └── WeatherIconTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | .idea 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/README.md -------------------------------------------------------------------------------- /RecipesApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/RecipesApp.png -------------------------------------------------------------------------------- /WeatherAppScreenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/WeatherAppScreenshots.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/gradlew -------------------------------------------------------------------------------- /app/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/gradlew.bat -------------------------------------------------------------------------------- /app/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/local.properties -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/acme/weather/app/model/repository/database/WeatherEntityCrudTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/androidTest/java/com/acme/weather/app/model/repository/database/WeatherEntityCrudTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/DebugTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/DebugTree.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/WeatherApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/WeatherApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/api/ForecastData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/api/ForecastData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/api/Location.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/api/Location.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/api/Temperature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/api/Temperature.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/api/Weather.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/api/Weather.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/api/WeatherIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/api/WeatherIcon.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/WeatherRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/WeatherRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/database/WeatherDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/database/WeatherDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/database/dao/WeatherDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/database/dao/WeatherDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/database/entity/TemperatureEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/database/entity/TemperatureEntity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/database/entity/WeatherEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/database/entity/WeatherEntity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/geolocation/WeatherLocationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/geolocation/WeatherLocationService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/network/WeatherApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/network/WeatherApi.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/network/WeatherApiResponseModels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/network/WeatherApiResponseModels.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/model/repository/network/WeatherForecastService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/model/repository/network/WeatherForecastService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/view/BindingAdapters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/view/BindingAdapters.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/view/LocationDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/view/LocationDialogFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/view/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/view/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/view/WeatherDetailFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/view/WeatherDetailFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/view/WeatherListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/view/WeatherListFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/view/WeatherRecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/view/WeatherRecyclerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/viewmodel/WeatherDetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/viewmodel/WeatherDetailViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/viewmodel/WeatherItemViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/viewmodel/WeatherItemViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/viewmodel/WeatherListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/viewmodel/WeatherListViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/app/viewmodel/WeatherViewModelFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/app/viewmodel/WeatherViewModelFactory.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/AppComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/AppComponent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/AppInjector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/AppInjector.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/FragmentBuildersModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/FragmentBuildersModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/Injectable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/Injectable.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/MainActivityModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/MainActivityModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/NetworkModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/ViewModelKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/ViewModelKey.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/di/ViewModelModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/di/ViewModelModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/navigation/DialogNavHostFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/navigation/DialogNavHostFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/navigation/DialogNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/navigation/DialogNavigator.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/navigation/NavigationExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/navigation/NavigationExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/common/navigation/NavigationResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/common/navigation/NavigationResult.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/security/view/EnterCredentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/security/view/EnterCredentials.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/security/view/SecureFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/security/view/SecureFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/acme/weather/security/viewmodel/AuthenticationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/java/com/acme/weather/security/viewmodel/AuthenticationViewModel.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/enter_credentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/layout/enter_credentials.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/location_add_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/layout/location_add_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/weather_detail_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/layout/weather_detail_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/weather_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/layout/weather_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/weather_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/layout/weather_list_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/global_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/menu/global_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/simulate_notification_with_deeplink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/menu/simulate_notification_with_deeplink.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/weather_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/menu/weather_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/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/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_cloudy.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_partlycloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_partlycloudy.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_rainy.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_snowy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_snowy.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_sunny.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_thunderstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxhdpi/ic_thunderstorm.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/login_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/navigation/login_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/navigation/weather_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/navigation/weather_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/release/java/com/acme/weather/ReleaseTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/release/java/com/acme/weather/ReleaseTree.kt -------------------------------------------------------------------------------- /app/src/release/java/com/acme/weather/WeatherApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/release/java/com/acme/weather/WeatherApplication.kt -------------------------------------------------------------------------------- /app/src/test/java/com/acme/weather/app/model/api/TemperatureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/test/java/com/acme/weather/app/model/api/TemperatureTest.kt -------------------------------------------------------------------------------- /app/src/test/java/com/acme/weather/app/model/api/WeatherIconTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/app/src/test/java/com/acme/weather/app/model/api/WeatherIconTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmaxwell2003/Weather/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------