-
Notifications
You must be signed in to change notification settings - Fork 5
/
SinchService.podspec
29 lines (20 loc) · 993 Bytes
/
SinchService.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
28
29
Pod::Spec.new do |s|
s.name = "SinchService"
s.version = "1.0.2"
s.platform = :ios, '6.0'
s.summary = "SinchService provides the class SINService which is a high-level wrapper around the Sinch iOS SDK"
s.description = <<-DESC
SinchService provides the class SINService which is a high-level wrapper around the Sinch iOS SDK.
DESC
s.homepage = "https://github.com/sinch/SinchService-iOS"
s.author = { "Christoffer Ahlbin" => "[email protected]" }
s.license = { :type => 'Apache' }
s.source = { :git => 'https://github.com/sinch/SinchService-iOS.git', :tag => '1.0.2' }
s.public_header_files = ['SinchService/SINService.h', 'SinchService/SinchService.h']
s.source_files = 'SinchService/*.{h,m}'
# shim target for Sinch.framework headers so that #import <Sinch/Sinch.h> works
s.subspec 'SinchHeaders' do |ss|
ss.source_files = 'SinchService/PrivateHeaders/Sinch/*.h'
ss.header_dir = 'Sinch'
end
end