- Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathTitaniumKit.podspec
30 lines (21 loc) · 1.04 KB
/
TitaniumKit.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
# Use the --use-libraries switch when pushing or linting this podspec
Pod::Spec.newdo |s|
s.name="TitaniumKit"
s.version="1.0.0"
s.summary="Titanium iOS Core framework"
s.description=<<-DESC
Titanium iOS Core framework.
DESC
s.homepage="https://github.com/tidev/titanium_mobile"
s.license={:type=>"Apache 2",:file=>"LICENSE"}
s.author='TiDev'
s.platform=:ios
s.ios.deployment_target='8.0'
s.source={:git=>"https://github.com/tidev/titanium_mobile.git"}
s.vendored_libraries='iphone/TitaniumKit/TitaniumKit/Libraries/**/*.{a}'
s.preserve_paths='iphone/TitaniumKit/TitaniumKit/Libraries/**/*.{a}'
s.ios.weak_frameworks='UIKit','Foundation'
s.requires_arc=false
s.public_header_files='iphone/TitaniumKit/TitaniumKit/**/**/*.h'
s.source_files='iphone/TitaniumKit/TitaniumKit/Sources/**/**/*.{h,m}','iphone/TitaniumKit/TitaniumKit/Libraries/**/*.h','iphone/TitaniumKit/TitaniumKit/TitaniumKit.h'
end