├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── android.yml │ ├── documentation.yml │ └── semgrep.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── detekt.xml ├── gradle.xml ├── icon.svg ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── ktlint.xml ├── migrations.xml ├── misc.xml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── togitech │ │ └── togii │ │ ├── MainActivity.kt │ │ └── ui │ │ └── theme │ │ ├── Color.kt │ │ ├── Shape.kt │ │ ├── Theme.kt │ │ └── Type.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.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 │ ├── strings.xml │ └── themes.xml ├── ccp ├── .gitignore ├── build.gradle.kts └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── togitech │ │ │ └── ccp │ │ │ ├── component │ │ │ ├── Autofill.kt │ │ │ ├── CountryDialog.kt │ │ │ ├── TogiCodeDialog.kt │ │ │ └── TogiCountryCodePicker.kt │ │ │ ├── data │ │ │ ├── CountryData.kt │ │ │ └── utils │ │ │ │ ├── CountryCodeUtils.kt │ │ │ │ ├── CountryNameMap.kt │ │ │ │ ├── NumberHintMap.kt │ │ │ │ ├── SearchCountryList.kt │ │ │ │ └── ValidatePhoneNumber.kt │ │ │ └── transformation │ │ │ └── PhoneNumberTransformation.kt │ └── res │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-so │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ └── test │ ├── java │ └── com │ │ └── togitech │ │ └── ccp │ │ └── CountryCodePickTest.kt │ └── snapshots │ └── images │ └── com.togitech.ccp_CountryCodePickTest_test.png ├── detekt.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── jitpack.yml ├── screenshots ├── 1.png ├── 2.png ├── 3.png └── 4.png └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | CountryCodePicker -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/detekt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/detekt.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/ktlint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/ktlint.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/togitech/togii/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/java/com/togitech/togii/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/togitech/togii/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/java/com/togitech/togii/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/togitech/togii/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/java/com/togitech/togii/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/togitech/togii/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/java/com/togitech/togii/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/togitech/togii/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/java/com/togitech/togii/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/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/jump-sdk/jetpack_compose_country_code_picker_emoji/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/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ccp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ccp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/build.gradle.kts -------------------------------------------------------------------------------- /ccp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/component/Autofill.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/component/Autofill.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/component/CountryDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/component/CountryDialog.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/component/TogiCodeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/component/TogiCodeDialog.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/component/TogiCountryCodePicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/component/TogiCountryCodePicker.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/data/CountryData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/data/CountryData.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/data/utils/CountryCodeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/data/utils/CountryCodeUtils.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/data/utils/CountryNameMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/data/utils/CountryNameMap.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/data/utils/NumberHintMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/data/utils/NumberHintMap.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/data/utils/SearchCountryList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/data/utils/SearchCountryList.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/data/utils/ValidatePhoneNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/data/utils/ValidatePhoneNumber.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/togitech/ccp/transformation/PhoneNumberTransformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/java/com/togitech/ccp/transformation/PhoneNumberTransformation.kt -------------------------------------------------------------------------------- /ccp/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-so/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-so/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ccp/src/test/java/com/togitech/ccp/CountryCodePickTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/test/java/com/togitech/ccp/CountryCodePickTest.kt -------------------------------------------------------------------------------- /ccp/src/test/snapshots/images/com.togitech.ccp_CountryCodePickTest_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/ccp/src/test/snapshots/images/com.togitech.ccp_CountryCodePickTest_test.png -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/detekt.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/gradlew -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/jitpack.yml -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jump-sdk/jetpack_compose_country_code_picker_emoji/HEAD/settings.gradle.kts --------------------------------------------------------------------------------