├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sidharth │ │ └── mosam │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── sidharth │ │ │ └── mosam │ │ │ ├── BaseApplication.kt │ │ │ ├── data │ │ │ ├── local │ │ │ │ ├── AppDatabase.kt │ │ │ │ ├── LocalDataSource.kt │ │ │ │ ├── WeatherDao.kt │ │ │ │ └── WeatherEntity.kt │ │ │ ├── mapper │ │ │ │ ├── WeatherEntityMapper.kt │ │ │ │ └── WeatherResponseMapper.kt │ │ │ ├── remote │ │ │ │ ├── RemoteDataSource.kt │ │ │ │ ├── WeatherResponse.kt │ │ │ │ └── WeatherService.kt │ │ │ └── repository │ │ │ │ └── WeatherDataRepositoryImpl.kt │ │ │ ├── di │ │ │ ├── component │ │ │ │ └── AppComponent.kt │ │ │ └── module │ │ │ │ ├── AppModule.kt │ │ │ │ ├── DatabaseModule.kt │ │ │ │ └── NetworkModule.kt │ │ │ ├── domain │ │ │ ├── model │ │ │ │ └── WeatherData.kt │ │ │ ├── repository │ │ │ │ └── WeatherDataRepository.kt │ │ │ └── usecase │ │ │ │ ├── GetWeatherDataUseCase.kt │ │ │ │ └── GetWeatherDataUseCaseImpl.kt │ │ │ ├── ui │ │ │ ├── MainActivity.kt │ │ │ └── viewmodel │ │ │ │ ├── WeatherViewModel.kt │ │ │ │ └── WeatherViewModelFactory.kt │ │ │ └── util │ │ │ ├── DrawableUtils.kt │ │ │ ├── LocationUtils.kt │ │ │ └── NetworkUtils.kt │ └── res │ │ ├── drawable │ │ ├── bg_day.jpg │ │ ├── bg_evening.jpg │ │ ├── bg_morning.jpg │ │ ├── bg_night.jpg │ │ ├── ic_air.xml │ │ ├── ic_clear_day.xml │ │ ├── ic_cloudy_day.xml │ │ ├── ic_cold.xml │ │ ├── ic_fog.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_rain.xml │ │ ├── ic_routine.xml │ │ ├── ic_snow.xml │ │ ├── ic_thermostat.xml │ │ ├── ic_thunderstorm.xml │ │ ├── ic_tornado.xml │ │ ├── ic_tsunami.xml │ │ └── ic_water.xml │ │ ├── font │ │ ├── poppins.xml │ │ ├── poppins_black.ttf │ │ ├── poppins_bold.ttf │ │ ├── poppins_extra_bold.ttf │ │ ├── poppins_extra_light.ttf │ │ ├── poppins_light.ttf │ │ ├── poppins_medium.ttf │ │ ├── poppins_regular.ttf │ │ ├── poppins_semi_bold.ttf │ │ └── poppins_thin.ttf │ │ ├── layout │ │ └── activity_main.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 │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── sidharth │ └── mosam │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── day.png ├── evening.png ├── morning.png └── night.png └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/sidharth/mosam/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/androidTest/java/com/sidharth/mosam/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/BaseApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/BaseApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/local/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/local/AppDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/local/LocalDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/local/LocalDataSource.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/local/WeatherDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/local/WeatherDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/local/WeatherEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/local/WeatherEntity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/mapper/WeatherEntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/mapper/WeatherEntityMapper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/mapper/WeatherResponseMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/mapper/WeatherResponseMapper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/remote/RemoteDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/remote/RemoteDataSource.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/remote/WeatherResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/remote/WeatherResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/remote/WeatherService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/remote/WeatherService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/data/repository/WeatherDataRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/data/repository/WeatherDataRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/di/component/AppComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/di/component/AppComponent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/di/module/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/di/module/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/di/module/DatabaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/di/module/DatabaseModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/di/module/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/di/module/NetworkModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/domain/model/WeatherData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/domain/model/WeatherData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/domain/repository/WeatherDataRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/domain/repository/WeatherDataRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/domain/usecase/GetWeatherDataUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/domain/usecase/GetWeatherDataUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/domain/usecase/GetWeatherDataUseCaseImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/domain/usecase/GetWeatherDataUseCaseImpl.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/ui/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/ui/viewmodel/WeatherViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/ui/viewmodel/WeatherViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/ui/viewmodel/WeatherViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/ui/viewmodel/WeatherViewModelFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/util/DrawableUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/util/DrawableUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/util/LocationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/util/LocationUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sidharth/mosam/util/NetworkUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/java/com/sidharth/mosam/util/NetworkUtils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/bg_day.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_evening.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/bg_evening.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_morning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/bg_morning.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/bg_night.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_air.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_air.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_clear_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_clear_day.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloudy_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_cloudy_day.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_cold.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_fog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_rain.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_routine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_routine.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_snow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_snow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thermostat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_thermostat.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_thunderstorm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_thunderstorm.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tornado.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_tornado.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tsunami.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_tsunami.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/drawable/ic_water.xml -------------------------------------------------------------------------------- /app/src/main/res/font/poppins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins.xml -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_black.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_extra_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_extra_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_extra_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_extra_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_semi_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/font/poppins_thin.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/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/SidharthMudgil/mosam/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/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/sidharth/mosam/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/app/src/test/java/com/sidharth/mosam/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/images/day.png -------------------------------------------------------------------------------- /images/evening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/images/evening.png -------------------------------------------------------------------------------- /images/morning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/images/morning.png -------------------------------------------------------------------------------- /images/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/images/night.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SidharthMudgil/mosam/HEAD/settings.gradle.kts --------------------------------------------------------------------------------