forked from ipraba/EPContactsPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EPContactsPicker.podspec
27 lines (25 loc) · 1.06 KB
/
EPContactsPicker.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
27
Pod::Spec.new do |s|
s.name = "EPContactsPicker"
s.version = "2.0.1"
s.summary = "A contacts picker component for iOS written in swift using new contacts framwork"
s.description = <<-DESC
Features
1. Single selection and multiselection option
2. Making the secondary data to show as requested(Phonenumbers, Emails, Birthday and Organisation)
3. Section Indexes to easily navigate throught the contacts
4. Showing initials when image is not available
5. EPContact object to get the properties of the contacts
DESC
s.homepage = "https://github.com/ipraba/EPContactsPicker"
s.license = 'MIT'
s.author = { "Prabaharan" => "[email protected]" }
s.source = { :git => "https://github.com/ipraba/EPContactsPicker.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pods'
s.frameworks = 'Contacts', 'ContactsUI'
s.resources = ["Pods/EPContactCell.xib"]
s.resource_bundles = {
'EPContactsPicker' => ['Pods/**/*.xib']
}
end