-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathAliyunLogCrashReporterV1.podspec
49 lines (41 loc) · 2.19 KB
/
AliyunLogCrashReporterV1.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
45
46
47
48
49
################################################################################################################################
##################################################### podspec file for dev #####################################################
################################################################################################################################
Pod::Spec.new do |s|
s.name = 'AliyunLogCrashReporterV1'
s.version = "4.3.3"
s.summary = 'aliyun log service ios crashreporter v1'
s.description = <<-DESC
log service ios producer.
https://help.aliyun.com/document_detail/29063.html
https://help.aliyun.com/product/28958.html
DESC
s.homepage = 'https://github.com/aliyun/aliyun-log-ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'aliyun-log' => '[email protected]' }
s.source = { :git => 'https://gitee.com/aliyun-sls/aliyun-log-ios-sdk.git', :tag => s.version.to_s }
s.social_media_url = 'http://t.cn/AiRpol8C'
# s.ios.deployment_target = '10.0'
# s.osx.deployment_target = '10.12'
# s.tvos.deployment_target = '10.0'
s.platform = :ios, "10.0"
s.requires_arc = true
s.libraries = 'z'
s.swift_version = "5.0"
# s.xcconfig = { 'GCC_ENABLE_CPP_EXCEPTIONS' => 'YES' }
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64 i386',
'OTHER_LDFLAGS' => '-ObjC',
}
s.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64 i386'
}
s.dependency 'AliyunLogProducer', "#{s.version}"
s.source_files = 'Sources/CrashReporter/**/*.{m,h}', 'Sources/Core/**/*.{m,h}', 'Sources/OT/**/*.{m,h}'
s.public_header_files = "Sources/CrashReporter/include/*.h", 'Sources/Core/include/*.h', 'Sources/OT/**/include/*.h'
s.resource_bundles = { s.name => ['Sources/CrashReporter/PrivacyInfo.xcprivacy'] }
s.vendored_frameworks = 'Sources/WPKMobi/WPKMobi.xcframework'
s.exclude_files = 'Sources/WPKMobi/WPKMobi.xcframework/**/Headers/*.h'
s.frameworks = "SystemConfiguration", "CoreGraphics"
s.libraries = "z", "c++"
end