forked from usedesk/UseDeskSwift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
UseDesk.podspec
executable file
·34 lines (25 loc) · 1.03 KB
/
UseDesk.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
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'UseDesk'
s.version = '2.2.1'
s.summary = 'A short description of UseDesk.'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/BugorBN/UseDeskSwift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = { :git => 'https://github.com/BugorBN/UseDeskSwift', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.static_framework = true
s.ios.source_files = ['UseDesk/Classes/*.{m,h,swift,}', 'Core/*.{m,h,swift}']
s.resource_bundles = {
'UseDesk' => ['UseDesk/Assets/*.{png,xcassets,imageset,jpeg,jpg}', 'UseDesk/Classes/*.{xib}']
}
s.frameworks = 'UIKit', 'MapKit' ,'AVFoundation'
s.dependency 'Socket.IO-Client-Swift', '~> 16.0'
s.dependency 'Alamofire', '~> 5'
s.dependency 'Swime'
s.dependency 'Down'
s.dependency 'Texture'
end