-
Notifications
You must be signed in to change notification settings - Fork 467
/
libPhoneNumberGeocoding.podspec
23 lines (23 loc) · 1.24 KB
/
libPhoneNumberGeocoding.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "libPhoneNumberGeocoding"
s.version = "1.2.0"
s.summary = "Geocoding Features for libPhoneNumber-iOS"
s.description = <<-DESC
libPhoneNumberGeocoding for iOS
iOS library for gathering region descriptions for any phone number. This library stores geocoding metadata on disk space.
DESC
s.homepage = "https://github.com/iziz/libPhoneNumber-iOS.git"
s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
s.authors = { "rastaarh" => "rastaar@google.com", "paween" => "paween@google.com", "aalexli" => "aalexli@google.com" }
s.source = { :git => "https://github.com/iziz/libPhoneNumber-iOS.git", :tag => s.version.to_s }
s.libraries = 'sqlite3'
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "11.0"
s.requires_arc = true
s.resources = "libPhoneNumberGeocoding/Metadata/*.bundle"
s.private_header_files = 'libPhoneNumberGeocoding/Metadata/NBGeocoderMetadataHelper.h'
s.dependency 'libPhoneNumber-iOS'
s.source_files = 'libPhoneNumberGeocoding/NBPhoneNumberOfflineGeocoder.{h,m}', 'libPhoneNumberGeocoding/Metadata/NBGeocoderMetadataHelper.{h,m}'
end