-
Notifications
You must be signed in to change notification settings - Fork 0
/
UdeskAVSSDK.podspec
52 lines (43 loc) · 1.98 KB
/
UdeskAVSSDK.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
50
51
52
#
# Be sure to run `pod spec lint Test.podspec" to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "UdeskAVSSDK"
s.version = "1.3.0"
s.license = "MIT"
s.summary = "UdeskAVSSDK SDK for iOS"
s.homepage = "https://github.com/udesk/UdeskAVSSDK-iOS"
s.author = {"zhangshuangyi " => "[email protected]"}
# s.source = {:git => "https://github.com/udesk/UdeskSDK-iOS.git", :commit => "a16fd53"}
s.source = {:git => "https://github.com/udesk/UdeskAVSSDK-iOS.git", :tag => "#{s.version}" }
s.platform = :ios, "9.0"
s.requires_arc = true
s.xcconfig = {"OTHER_LDFLAGS" => "-ObjC",
"HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2"}
s.pod_target_xcconfig = { "VALID_ARCHS" => "x86_64 armv7 arm64" }
s.subspec "SDK" do |ss|
ss.source_files = "lib/UdeskAVSSDK/SDK/**/*.h"
ss.vendored_libraries = "lib/UdeskAVSSDK/SDK/libUdeskAVS.a"
ss.public_header_files = "lib/UdeskAVSSDK/SDK/**/*.h"
end
s.static_framework = true
s.source_files = "lib/UdeskAVSSDK/UIKit/*.{h,m}"
s.public_header_files = "lib/UdeskAVSSDK/UIKit*.{h}"
s.subspec "AVSKit" do |ss|
ss.source_files = "lib/UdeskAVSSDK/UIKit/**/*.{h,m}"
ss.resource = "lib/UdeskAVSSDK/UIKit/Resources/UdeskAVSBundle.bundle"
ss.public_header_files = "lib/UdeskAVSSDK/UIKit/**/*.{h}"
ss.frameworks = "Accelerate", "OpenAL"
ss.libraries = "z", "c++", "resolv", "sqlite3"
ss.pod_target_xcconfig = { "ENABLE_BITCODE" => "NO" }
ss.dependency "UdeskAVSSDK/SDK"
ss.dependency "YYText", "~> 1.0.7"
ss.dependency "SDWebImage", "~> 5.11.1"
ss.dependency "MJRefresh", "~> 3.7.5"
ss.dependency "TXLiteAVSDK_TRTC", "8.7.10102"
end
end