-
Notifications
You must be signed in to change notification settings - Fork 37
/
AliyunLogURLSessionInstrumentation.podspec
48 lines (39 loc) · 2.05 KB
/
AliyunLogURLSessionInstrumentation.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
################################################################################################################################
##################################################### podspec file for dev #####################################################
################################################################################################################################
Pod::Spec.new do |s|
s.name = 'AliyunLogURLSessionInstrumentation'
s.version = "4.3.2"
s.summary = 'aliyun log service ios urlsession instrumentation configuration.'
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' => 'yulong.gyl@alibaba-inc.com' }
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.default_subspec = 'AliyunLogOtlpExporter'
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.dependency 'AliyunLogOTelCommon/OpenTelemetryApi', "#{s.version}"
s.dependency 'AliyunLogOTelCommon/OpenTelemetrySdk', "#{s.version}"
s.dependency 'AliyunLogOTelCommon/URLSessionInstrumentation', "#{s.version}"
s.source_files = 'Sources/Instrumentation/AliyunLogURLSession/**/*.{m,h,swift}'
end