-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGalaxy.podspec
executable file
·25 lines (23 loc) · 1.08 KB
/
Galaxy.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
Pod::Spec.new do |s|
s.name = 'Galaxy'
s.homepage = 'https://github.com/liujunliuhong/Galaxy'
s.summary = 'Some useful tools'
s.description = 'Some useful tools, contains UIKit and Foundation'
s.author = { 'liujunliuhong' => '[email protected]' }
s.version = '2.0.3'
s.source = { :git => 'https://github.com/liujunliuhong/Galaxy.git', :tag => s.version.to_s }
s.platform = :ios, '12.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.module_name = 'Galaxy'
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.static_framework = true
s.source_files = 'Sources/*/*.swift','Sources/*/*.{h,m}'
s.resource = 'Sources/*/*.bundle'
s.dependency 'CocoaLumberjack/Swift'
s.dependency 'SnapKit'
s.dependency 'Alamofire'
s.dependency 'BigInt'
s.dependency 'MBProgressHUD'
end