├── .circleci └── config.yml ├── .github └── workflows │ └── android.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── copyright │ └── ca.xml ├── icon.png ├── icon_dark.png ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── runConfigurations.xml └── runConfigurations │ ├── Run_All_Tests.xml │ ├── checks.xml │ └── publishReleasePublicationToSonatypeRepository.xml ├── LICENSE.md ├── README.md ├── art ├── icon.png └── icon_dark.png ├── dependencies.gradle ├── gradle.properties ├── gradle ├── android_application_config.gradle ├── android_common_config.gradle ├── android_library_config.gradle ├── versions_plugin_config.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kite ├── .gitignore ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── cioccarellia │ │ │ └── kite │ │ │ ├── Kite.kt │ │ │ ├── fetchers │ │ │ ├── CustomKiteFetcher.kt │ │ │ ├── KiteFetcher.kt │ │ │ ├── StandardKiteFetcher.kt │ │ │ ├── compat │ │ │ │ ├── KiteColorStateLists.kt │ │ │ │ ├── KiteColors.kt │ │ │ │ └── KiteDrawables.kt │ │ │ ├── context │ │ │ │ ├── KiteStrings.kt │ │ │ │ └── KiteTexts.kt │ │ │ ├── custom │ │ │ │ ├── KiteAnimations.kt │ │ │ │ └── KiteInterpolators.kt │ │ │ └── resources │ │ │ │ ├── KiteBools.kt │ │ │ │ ├── KiteDimensions.kt │ │ │ │ ├── KiteFonts.kt │ │ │ │ ├── KiteFraction.kt │ │ │ │ ├── KiteIdentifier.kt │ │ │ │ ├── KiteIntArrays.kt │ │ │ │ ├── KiteIntegers.kt │ │ │ │ ├── KiteLayouts.kt │ │ │ │ ├── KitePlurals.kt │ │ │ │ ├── KiteRaws.kt │ │ │ │ ├── KiteStringArrays.kt │ │ │ │ ├── KiteTypedArrays.kt │ │ │ │ └── KiteXmls.kt │ │ │ └── internal │ │ │ └── ContextSwitcher.kt │ ├── res-public │ │ └── values │ │ │ └── public.xml │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── kotlin │ └── com │ └── cioccarellia │ └── kite │ └── KiteColorTest.kt ├── library_info.gradle ├── publish-mavencentral.gradle ├── sample ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── cioccarellia │ │ └── sample │ │ ├── App.kt │ │ └── MainActivity.kt │ └── res │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_dark.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_dark.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_dark.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_dark.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_dark.png │ ├── values-large │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/copyright/ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/copyright/ca.xml -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /.idea/icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/icon_dark.png -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_All_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/runConfigurations/Run_All_Tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/runConfigurations/checks.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/publishReleasePublicationToSonatypeRepository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/.idea/runConfigurations/publishReleasePublicationToSonatypeRepository.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/README.md -------------------------------------------------------------------------------- /art/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/art/icon.png -------------------------------------------------------------------------------- /art/icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/art/icon_dark.png -------------------------------------------------------------------------------- /dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/dependencies.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/android_application_config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle/android_application_config.gradle -------------------------------------------------------------------------------- /gradle/android_common_config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle/android_common_config.gradle -------------------------------------------------------------------------------- /gradle/android_library_config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle/android_library_config.gradle -------------------------------------------------------------------------------- /gradle/versions_plugin_config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle/versions_plugin_config.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kite/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /kite/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/build.gradle -------------------------------------------------------------------------------- /kite/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/Kite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/Kite.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/CustomKiteFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/CustomKiteFetcher.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/KiteFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/KiteFetcher.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/StandardKiteFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/StandardKiteFetcher.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/compat/KiteColorStateLists.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/compat/KiteColorStateLists.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/compat/KiteColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/compat/KiteColors.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/compat/KiteDrawables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/compat/KiteDrawables.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/context/KiteStrings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/context/KiteStrings.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/context/KiteTexts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/context/KiteTexts.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/custom/KiteAnimations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/custom/KiteAnimations.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/custom/KiteInterpolators.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/custom/KiteInterpolators.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteBools.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteBools.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteDimensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteDimensions.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteFonts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteFonts.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteFraction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteFraction.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteIdentifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteIdentifier.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteIntArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteIntArrays.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteIntegers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteIntegers.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteLayouts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteLayouts.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KitePlurals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KitePlurals.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteRaws.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteRaws.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteStringArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteStringArrays.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteTypedArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteTypedArrays.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteXmls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/fetchers/resources/KiteXmls.kt -------------------------------------------------------------------------------- /kite/src/main/kotlin/com/cioccarellia/kite/internal/ContextSwitcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/kotlin/com/cioccarellia/kite/internal/ContextSwitcher.kt -------------------------------------------------------------------------------- /kite/src/main/res-public/values/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/res-public/values/public.xml -------------------------------------------------------------------------------- /kite/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /kite/src/test/kotlin/com/cioccarellia/kite/KiteColorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/kite/src/test/kotlin/com/cioccarellia/kite/KiteColorTest.kt -------------------------------------------------------------------------------- /library_info.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/library_info.gradle -------------------------------------------------------------------------------- /publish-mavencentral.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/publish-mavencentral.gradle -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/cioccarellia/sample/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/kotlin/com/cioccarellia/sample/App.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/cioccarellia/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/kotlin/com/cioccarellia/sample/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_dark.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_dark.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_dark.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_dark.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_dark.png -------------------------------------------------------------------------------- /sample/src/main/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/values-large/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cioccarellia/kite/HEAD/settings.gradle --------------------------------------------------------------------------------