Showing
1 changed file
with
32 additions
and
0 deletions
liberate.podspec
0 → 100644
1 | + | ||
2 | +Pod::Spec.new do |s| | ||
3 | + s.name = 'liberate' | ||
4 | + s.version = '0.1.0' | ||
5 | + s.summary = 'A short description of liberate.' | ||
6 | + | ||
7 | + s.ios.deployment_target = '9.0' | ||
8 | + | ||
9 | + s.description = <<-DESC | ||
10 | + TODO: Add long description of the pod here. | ||
11 | + DESC | ||
12 | + | ||
13 | + s.homepage = 'https://code.hh-medic.com/dev-client/hhsdk.ios' | ||
14 | + s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
15 | + s.author = { 'shmilyshijian@foxmail.com' => 'shmilyshijian@foxmail.com' } | ||
16 | + s.source = { :git => 'git@code.hh-medic.com:dev-client/hhsdk.ios.git', :tag => s.version } | ||
17 | + | ||
18 | + s.source_files = 'liberate/Classes/**/*' | ||
19 | + s.public_header_files = 'liberate/Classes/**/*.h' | ||
20 | + s.resources = 'liberate/Resources/*.*' | ||
21 | + | ||
22 | + s.vendored_frameworks = 'liberate/Vendors/*.framework' | ||
23 | + | ||
24 | + s.frameworks = 'SystemConfiguration', 'CoreServices', 'AVFoundation', 'CoreTelephony', 'VideoToolbox', 'AudioToolbox', 'CoreMedia', 'Accelerate' | ||
25 | + s.libraries = 'z', 'sqlite3.0', 'c++', 'stdc++', 'resolv' | ||
26 | + | ||
27 | + s.pod_target_xcconfig = { | ||
28 | + 'OTHER_LDFLAGS' => '-ObjC', | ||
29 | + 'ENABLE_BITCODE' => 'NO', | ||
30 | + 'ARCHS' => ['arm64', 'x86_64'] | ||
31 | + } | ||
32 | +end |
-
Please register or login to post a comment