-
Notifications
You must be signed in to change notification settings - Fork 43
/
MRCountryPicker.podspec
26 lines (20 loc) · 1.09 KB
/
MRCountryPicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'MRCountryPicker'
s.version = '0.0.8'
s.summary = 'Country picker with flags and optional phone numbers for iOS written in Swift.'
s.description = <<-DESC
Country picker with flags and optional phone numbers for iOS written in Swift. Has the option to set initial country, delegate functions return country code, country name, country phone prefix and country flag. Swift 3 support.
DESC
s.homepage = 'https://github.com/xtrinch/MRCountryPicker'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mojca Rojko' => 'mojca.rojko@gmail.com' }
s.source = { :git => 'https://github.com/xtrinch/MRCountryPicker.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '8.0'
s.swift_version = '4.0'
s.source_files = 'MRCountryPicker/Classes/**/*'
s.resource_bundles = {
'SwiftCountryPicker' => ['MRCountryPicker/Assets/SwiftCountryPicker.bundle/*']
}
end