├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml └── misc.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lehtimaeki │ │ └── askold │ │ └── ExampleInstrumentedTest.kt │ ├── debug │ └── res │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── technical_strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── lehtimaeki │ │ │ └── askold │ │ │ ├── ColorPalettes.kt │ │ │ ├── FullscreenActivity.kt │ │ │ ├── GameTile.kt │ │ │ ├── MainFragment.kt │ │ │ ├── MyApplication.kt │ │ │ ├── RememberWindowInfo.kt │ │ │ ├── data │ │ │ └── UserPreferences.kt │ │ │ ├── delegates │ │ │ └── FragmentViewBindingDelegate.kt │ │ │ ├── di │ │ │ └── AskoldModule.kt │ │ │ ├── iapRepo │ │ │ └── InAppPurchasesRep.kt │ │ │ ├── iconset │ │ │ ├── IconSet.kt │ │ │ ├── IconSetRepo.kt │ │ │ └── IconSetWrapper.kt │ │ │ ├── landingscreen │ │ │ ├── LandingScreenActivity.kt │ │ │ ├── LandingScreenActivityViewModel.kt │ │ │ ├── LandingScreenFragment.kt │ │ │ └── LandingScreenViewModel.kt │ │ │ ├── previewscreen │ │ │ ├── PreviewScreenFragment.kt │ │ │ └── PreviewScreenViewModel.kt │ │ │ ├── profilescreen │ │ │ ├── ProfileScreenFragment.kt │ │ │ └── ProfileScreenViewModel.kt │ │ │ ├── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ │ └── utils │ │ │ └── GameTileResources.kt │ └── res │ │ ├── font │ │ ├── cookie_regular.ttf │ │ ├── cookies.ttf │ │ ├── roboto_medium.ttf │ │ └── roboto_regular.ttf │ │ ├── layout │ │ ├── activity_fullscreen.xml │ │ ├── fragment_main.xml │ │ ├── game_tile.xml │ │ ├── landing_screen_activity.xml │ │ ├── one_column.xml │ │ └── one_tile.xml │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-ro-rRO │ │ └── strings.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── release │ ├── ic_launcher-playstore.png │ └── res │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── technical_strings.xml │ └── test │ └── java │ └── com │ └── lehtimaeki │ └── askold │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lehtimaeki/askold/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/androidTest/java/com/lehtimaeki/askold/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/debug/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/debug/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/debug/res/values/technical_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/debug/res/values/technical_strings.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/ColorPalettes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/ColorPalettes.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/FullscreenActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/FullscreenActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/GameTile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/GameTile.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/MainFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/MainFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/MyApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/RememberWindowInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/RememberWindowInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/data/UserPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/data/UserPreferences.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/delegates/FragmentViewBindingDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/delegates/FragmentViewBindingDelegate.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/di/AskoldModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/di/AskoldModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/iapRepo/InAppPurchasesRep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/iapRepo/InAppPurchasesRep.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/iconset/IconSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/iconset/IconSet.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/iconset/IconSetRepo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/iconset/IconSetRepo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/iconset/IconSetWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/iconset/IconSetWrapper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenActivityViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenActivityViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/landingscreen/LandingScreenViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/previewscreen/PreviewScreenFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/previewscreen/PreviewScreenFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/previewscreen/PreviewScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/previewscreen/PreviewScreenViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/profilescreen/ProfileScreenFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/profilescreen/ProfileScreenFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/profilescreen/ProfileScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/profilescreen/ProfileScreenViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lehtimaeki/askold/utils/GameTileResources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/java/com/lehtimaeki/askold/utils/GameTileResources.kt -------------------------------------------------------------------------------- /app/src/main/res/font/cookie_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/font/cookie_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cookies.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/font/cookies.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/font/roboto_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/font/roboto_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/layout/activity_fullscreen.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/game_tile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/layout/game_tile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/landing_screen_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/layout/landing_screen_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/one_column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/layout/one_column.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/one_tile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/layout/one_tile.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/release/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/release/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/release/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/release/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/release/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/release/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/release/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/release/res/values/technical_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/release/res/values/technical_strings.xml -------------------------------------------------------------------------------- /app/src/test/java/com/lehtimaeki/askold/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/app/src/test/java/com/lehtimaeki/askold/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapp-Mobile/Toddler-Tiles/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "Askold" 2 | include ':app' 3 | --------------------------------------------------------------------------------