├── .gradle ├── 8.0 │ ├── gc.properties │ ├── fileChanges │ │ └── last-build.bin │ ├── dependencies-accessors │ │ ├── gc.properties │ │ └── dependencies-accessors.lock │ ├── checksums │ │ └── checksums.lock │ ├── fileHashes │ │ ├── fileHashes.bin │ │ ├── fileHashes.lock │ │ └── resourceHashesCache.bin │ └── executionHistory │ │ ├── executionHistory.bin │ │ └── executionHistory.lock ├── vcs-1 │ └── gc.properties ├── buildOutputCleanup │ ├── cache.properties │ ├── outputFiles.bin │ └── buildOutputCleanup.lock └── file-system.probe ├── .idea ├── .name ├── compiler.xml ├── kotlinc.xml ├── vcs.xml ├── .gitignore ├── misc.xml └── gradle.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── template ├── src │ └── main │ │ ├── res │ │ ├── drawable │ │ │ ├── pager_0.jpg │ │ │ ├── pager_1.jpg │ │ │ ├── pager_2.jpg │ │ │ ├── ic_person.xml │ │ │ ├── ic_round_token_24.xml │ │ │ ├── ic_flame.xml │ │ │ └── ic_launcher_background.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── themes.xml │ │ │ ├── keys.xml │ │ │ └── colors.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher_round.xml │ │ │ └── ic_launcher.xml │ │ ├── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ └── com │ │ │ └── composables │ │ │ └── jetpackcomposetemplate │ │ │ ├── SampleApplication.kt │ │ │ ├── http │ │ │ └── HttpClientFactory.kt │ │ │ ├── apimodel │ │ │ ├── Urls.kt │ │ │ └── ApiPhoto.kt │ │ │ ├── ui │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Type.kt │ │ │ │ └── Theme.kt │ │ │ ├── LoadingScreen.kt │ │ │ ├── TransparentSystemBars.kt │ │ │ └── ContentCard.kt │ │ │ ├── core │ │ │ ├── FindActivity.kt │ │ │ ├── AppReference.kt │ │ │ ├── AppContentProvider.kt │ │ │ └── AbstractViewmodel.kt │ │ │ ├── formatLongNumber.kt │ │ │ ├── home │ │ │ ├── HomeScreen.kt │ │ │ ├── HomeScreenViewModel.kt │ │ │ └── HomeTab.kt │ │ │ ├── LockScreenOrientation.kt │ │ │ ├── di │ │ │ ├── HttpClientFactory.kt │ │ │ └── DependencyInjection.kt │ │ │ ├── MainActivity.kt │ │ │ ├── details │ │ │ ├── PhotoDetailsViewModel.kt │ │ │ └── PhotoDetailsScreen.kt │ │ │ ├── Logging.kt │ │ │ ├── PhotosRepository.kt │ │ │ ├── permissions │ │ │ └── OptionalPermission.kt │ │ │ └── Permissions.kt │ │ └── AndroidManifest.xml ├── .gitignore ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── local.properties ├── depedencies.gradle ├── gradle.properties ├── gradlew.bat ├── README.md └── gradlew /.gradle/8.0/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/8.0/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Jetpack Compose App template -------------------------------------------------------------------------------- /.gradle/8.0/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Sep 14 12:24:13 WITA 2023 2 | gradle.version=8.0 3 | -------------------------------------------------------------------------------- /.gradle/file-system.probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/file-system.probe -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gradle/8.0/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/checksums/checksums.lock -------------------------------------------------------------------------------- /.gradle/8.0/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/8.0/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /template/src/main/res/drawable/pager_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/drawable/pager_0.jpg -------------------------------------------------------------------------------- /template/src/main/res/drawable/pager_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/drawable/pager_1.jpg -------------------------------------------------------------------------------- /template/src/main/res/drawable/pager_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/drawable/pager_2.jpg -------------------------------------------------------------------------------- /.gradle/8.0/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /.gradle/8.0/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /.gradle/8.0/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /template/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Jetpack Compose App template 3 | Viewed %s times 4 | -------------------------------------------------------------------------------- /template/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /.gradle/8.0/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/.gradle/8.0/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /template/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composablehorizons/jetpack-compose-app-template/HEAD/template/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /template/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |