forked from aliyun/aliyun-oss-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AliyunOSSiOS.podspec
33 lines (19 loc) · 1.06 KB
/
AliyunOSSiOS.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
Pod::Spec.new do |s|
s.name = "AliyunOSSiOS"
s.version = "2.10.15"
s.summary = "An iOS SDK for Aliyun Object Storage Service"
s.description = <<-DESC
It's an SDK for aliyun object storage service, which implement by Objective-C.It helps the iOS developers to access the OSS easier.
DESC
s.homepage = "https://github.com/aliyun/AliyunOSSiOS"
s.license = "Apache License, Version 2.0"
s.authors = { "Aliyun Open Service" => "aliyuncloudcomputing" }
s.source = { :git => "https://github.com/aliyun/aliyun-oss-ios-sdk.git", :tag => "release_" + s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Supporting Files/AliyunOSSiOS.h', 'AliyunOSSSDK/*.{h,m,c}', 'AliyunOSSSDK/OSSTask/*.{h,m}','AliyunOSSSDK/OSSFileLog/*.{h,m}', 'AliyunOSSSDK/OSSIPv6/*.{h,m}'
s.ios.frameworks = 'SystemConfiguration','CoreTelephony'
s.osx.frameworks = 'SystemConfiguration','CoreTelephony'
s.library = 'resolv'
end