-
Notifications
You must be signed in to change notification settings - Fork 30
/
TikTokOpenSDKCore.podspec
44 lines (39 loc) · 1.53 KB
/
TikTokOpenSDKCore.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
35
36
37
38
39
40
41
42
43
44
#
# Copyright 2022 TikTok Pte. Ltd.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
#
# Be sure to run `pod lib lint TikTokOpenSDKCore.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'TikTokOpenSDKCore'
s.version = '2.5.0'
s.summary = 'TikTok OpenSDK Core'
s.description = <<-DESC
This is TikTok OpenSDK core, shared models and interface.
DESC
s.homepage = 'https://github.com/tiktok/tiktok-opensdk-ios'
s.license = { :file => 'LICENSE' }
s.author = { 'TikTok OpenPlatform' => '[email protected]' }
s.source = { :git => 'https://github.com/tiktok/tiktok-opensdk-ios.git', :tag => "v#{s.version.to_s}" }
s.ios.deployment_target = '12.0'
s.pod_target_xcconfig = {
'GCC_PRECOMPILE_PREFIX_HEADER' => "NO",
'DEBUG_INFORMATION_FORMAT' => "DWARF with dSYM",
'CLANG_ENABLE_MODULES' => "YES",
'GCC_GENERATE_DEBUGGING_SYMBOLS' => "YES"
}
s.default_subspecs = 'Core'
s.frameworks = 'Foundation'
s.swift_version = '5.0'
s.subspec "Core" do |ss|
ss.source_files = 'Sources/TikTokOpenSDKCore/**/*.swift'
ss.resource_bundles = {'TikTokOpenSDKCorePrivacyInfo' => 'Sources/TikTokOpenSDKCore/Resources/PrivacyInfo.xcprivacy' }
end
end