├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── jarRepositories.xml └── runConfigurations.xml ├── LICENSE.MD ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── nl │ │ └── bartnijland │ │ └── countrycodepickerdialog │ │ ├── CountryCodePickerDialogFragmentTest.kt │ │ ├── CountryCodesFetcherTest.kt │ │ ├── fetchers │ │ └── CountryCodesJsonFetcher.kt │ │ └── util │ │ ├── CountryCodesJsonFromMemoryFetcher.kt │ │ ├── DummyImageFetcher.kt │ │ ├── ImageViewHasBitmapDrawableMatcher.kt │ │ ├── RecyclerViewItemCountAssertion.kt │ │ └── RecyclerViewMatcher.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── country_codes.json │ ├── java │ │ └── nl │ │ │ └── bartnijland │ │ │ └── countrycodepickerdialog │ │ │ ├── CountryCodePickerDataManager.kt │ │ │ ├── fetcher │ │ │ ├── CountryCodesFetcher.kt │ │ │ ├── CountryCodesJsonFetcher.kt │ │ │ ├── CountryCodesJsonFromDiskFetcher.kt │ │ │ ├── ImageFetcher.kt │ │ │ └── RemoteImageFetcher.kt │ │ │ ├── listeners │ │ │ └── OnCountryCodeSelectedListener.kt │ │ │ ├── models │ │ │ └── CountryCode.kt │ │ │ ├── ui │ │ │ ├── activities │ │ │ │ └── SimpleFragmentActivity.kt │ │ │ ├── adapters │ │ │ │ └── CountryCodePickerDialogAdapter.kt │ │ │ └── fragments │ │ │ │ └── CountryCodePickerDialogFragment.kt │ │ │ └── utils │ │ │ └── CountryCodesUtil.kt │ └── res │ │ ├── layout │ │ ├── dialog_country_code_picker.xml │ │ └── dialog_country_code_picker_row.xml │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── nl │ └── bartnijland │ └── countrycodepickerdialog │ └── utils │ └── CountryCodesUtilTest.kt ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── nl │ │ └── bartnijland │ │ └── countrycodepickerdialog │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── nl │ │ │ └── bartnijland │ │ │ └── countrycodepickerdialog │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── nl │ └── bartnijland │ └── countrycodepickerdialog │ └── ExampleUnitTest.kt ├── screenshot.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/CountryCodePickerDialogFragmentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/CountryCodePickerDialogFragmentTest.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/CountryCodesFetcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/CountryCodesFetcherTest.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/fetchers/CountryCodesJsonFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/fetchers/CountryCodesJsonFetcher.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/CountryCodesJsonFromMemoryFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/CountryCodesJsonFromMemoryFetcher.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/DummyImageFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/DummyImageFetcher.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/ImageViewHasBitmapDrawableMatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/ImageViewHasBitmapDrawableMatcher.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/RecyclerViewItemCountAssertion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/RecyclerViewItemCountAssertion.kt -------------------------------------------------------------------------------- /library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/RecyclerViewMatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/util/RecyclerViewMatcher.kt -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/assets/country_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/assets/country_codes.json -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/CountryCodePickerDataManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/CountryCodePickerDataManager.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/CountryCodesFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/CountryCodesFetcher.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/CountryCodesJsonFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/CountryCodesJsonFetcher.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/CountryCodesJsonFromDiskFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/CountryCodesJsonFromDiskFetcher.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/ImageFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/ImageFetcher.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/RemoteImageFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/fetcher/RemoteImageFetcher.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/listeners/OnCountryCodeSelectedListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/listeners/OnCountryCodeSelectedListener.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/models/CountryCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/models/CountryCode.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/ui/activities/SimpleFragmentActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/ui/activities/SimpleFragmentActivity.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/ui/adapters/CountryCodePickerDialogAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/ui/adapters/CountryCodePickerDialogAdapter.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/ui/fragments/CountryCodePickerDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/ui/fragments/CountryCodePickerDialogFragment.kt -------------------------------------------------------------------------------- /library/src/main/java/nl/bartnijland/countrycodepickerdialog/utils/CountryCodesUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/java/nl/bartnijland/countrycodepickerdialog/utils/CountryCodesUtil.kt -------------------------------------------------------------------------------- /library/src/main/res/layout/dialog_country_code_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/res/layout/dialog_country_code_picker.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/dialog_country_code_picker_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/res/layout/dialog_country_code_picker_row.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/test/java/nl/bartnijland/countrycodepickerdialog/utils/CountryCodesUtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/library/src/test/java/nl/bartnijland/countrycodepickerdialog/utils/CountryCodesUtilTest.kt -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/androidTest/java/nl/bartnijland/countrycodepickerdialog/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/nl/bartnijland/countrycodepickerdialog/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/java/nl/bartnijland/countrycodepickerdialog/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/test/java/nl/bartnijland/countrycodepickerdialog/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/sample/src/test/java/nl/bartnijland/countrycodepickerdialog/ExampleUnitTest.kt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartNijland91/android-countrycodepickerdialog/HEAD/screenshot.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sample', ':library' 2 | --------------------------------------------------------------------------------