├── .cocoadocs.yml ├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SwiftCountryPicker.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SwiftCountryPicker-SwiftCountryPicker.xcscheme │ └── Target Support Files │ │ ├── Pods-SwiftCountryPicker_Example │ │ ├── Info.plist │ │ ├── Pods-SwiftCountryPicker_Example-acknowledgements.markdown │ │ ├── Pods-SwiftCountryPicker_Example-acknowledgements.plist │ │ ├── Pods-SwiftCountryPicker_Example-dummy.m │ │ ├── Pods-SwiftCountryPicker_Example-frameworks.sh │ │ ├── Pods-SwiftCountryPicker_Example-resources.sh │ │ ├── Pods-SwiftCountryPicker_Example-umbrella.h │ │ ├── Pods-SwiftCountryPicker_Example.debug.xcconfig │ │ ├── Pods-SwiftCountryPicker_Example.modulemap │ │ └── Pods-SwiftCountryPicker_Example.release.xcconfig │ │ ├── Pods-SwiftCountryPicker_Tests │ │ ├── Info.plist │ │ ├── Pods-SwiftCountryPicker_Tests-acknowledgements.markdown │ │ ├── Pods-SwiftCountryPicker_Tests-acknowledgements.plist │ │ ├── Pods-SwiftCountryPicker_Tests-dummy.m │ │ ├── Pods-SwiftCountryPicker_Tests-frameworks.sh │ │ ├── Pods-SwiftCountryPicker_Tests-resources.sh │ │ ├── Pods-SwiftCountryPicker_Tests-umbrella.h │ │ ├── Pods-SwiftCountryPicker_Tests.debug.xcconfig │ │ ├── Pods-SwiftCountryPicker_Tests.modulemap │ │ └── Pods-SwiftCountryPicker_Tests.release.xcconfig │ │ └── SwiftCountryPicker │ │ ├── Info.plist │ │ ├── ResourceBundle-SwiftCountryPicker-Info.plist │ │ ├── SwiftCountryPicker-dummy.m │ │ ├── SwiftCountryPicker-prefix.pch │ │ ├── SwiftCountryPicker-umbrella.h │ │ ├── SwiftCountryPicker.modulemap │ │ └── SwiftCountryPicker.xcconfig ├── SwiftCountryPicker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftCountryPicker-Example.xcscheme ├── SwiftCountryPicker.xcworkspace │ └── contents.xcworkspacedata ├── SwiftCountryPicker │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ └── EmojiCountryCodes.json └── Classes │ ├── .gitkeep │ └── CountryPicker.swift ├── README.md ├── SwiftCountryPicker.podspec ├── SwiftCountryPicker.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SwiftCountryPicker ├── Info.plist └── SwiftCountryPicker.h ├── SwiftCountryPickerTests ├── Info.plist └── SwiftCountryPickerTests.swift └── _pods.xcodeproj ├── project.pbxproj └── xcshareddata └── xcschemes └── SwiftCountryPicker-SwiftCountryPicker.xcscheme /.cocoadocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/.cocoadocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SwiftCountryPicker.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Local Podspecs/SwiftCountryPicker.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SwiftCountryPicker-SwiftCountryPicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SwiftCountryPicker-SwiftCountryPicker.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Example/Pods-SwiftCountryPicker_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/Pods-SwiftCountryPicker_Tests/Pods-SwiftCountryPicker_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/ResourceBundle-SwiftCountryPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/ResourceBundle-SwiftCountryPicker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Pods/Target Support Files/SwiftCountryPicker/SwiftCountryPicker.xcconfig -------------------------------------------------------------------------------- /Example/SwiftCountryPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SwiftCountryPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftCountryPicker.xcodeproj/xcshareddata/xcschemes/SwiftCountryPicker-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker.xcodeproj/xcshareddata/xcschemes/SwiftCountryPicker-Example.xcscheme -------------------------------------------------------------------------------- /Example/SwiftCountryPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftCountryPicker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SwiftCountryPicker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SwiftCountryPicker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SwiftCountryPicker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftCountryPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker/Info.plist -------------------------------------------------------------------------------- /Example/SwiftCountryPicker/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/SwiftCountryPicker/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/EmojiCountryCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Pod/Assets/EmojiCountryCodes.json -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/CountryPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/Pod/Classes/CountryPicker.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/README.md -------------------------------------------------------------------------------- /SwiftCountryPicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPicker.podspec -------------------------------------------------------------------------------- /SwiftCountryPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftCountryPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftCountryPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPicker/Info.plist -------------------------------------------------------------------------------- /SwiftCountryPicker/SwiftCountryPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPicker/SwiftCountryPicker.h -------------------------------------------------------------------------------- /SwiftCountryPickerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPickerTests/Info.plist -------------------------------------------------------------------------------- /SwiftCountryPickerTests/SwiftCountryPickerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/SwiftCountryPickerTests/SwiftCountryPickerTests.swift -------------------------------------------------------------------------------- /_pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/_pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /_pods.xcodeproj/xcshareddata/xcschemes/SwiftCountryPicker-SwiftCountryPicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelbeek/SwiftCountryPicker/HEAD/_pods.xcodeproj/xcshareddata/xcschemes/SwiftCountryPicker-SwiftCountryPicker.xcscheme --------------------------------------------------------------------------------