-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathAgoraEduUI.podspec
35 lines (30 loc) · 1.63 KB
/
AgoraEduUI.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
Pod::Spec.new do |spec|
spec.name = "AgoraEduUI"
spec.version = "2.8.105"
spec.summary = "Agora Edu UI"
spec.description = "Agora Edu UI SDK"
spec.homepage = "https://docs.agora.io/en/agora-class/landing-page?platform=iOS"
spec.license = { "type" => "Copyright", "text" => "Copyright 2020 agora.io. All rights reserved." }
spec.author = { "Agora Lab" => "[email protected]" }
spec.module_name = "AgoraEduUI"
spec.ios.deployment_target = "10.0"
spec.swift_versions = ["5.0", "5.1", "5.2", "5.3", "5.4"]
spec.source = { :git => "[email protected]:AgoraIO-Community/CloudClass-iOS.git", :tag => "AgoraEduUI_v" + "#{spec.version.to_s}" }
spec.public_header_files = "SDKs/AgoraEduUI/Classes/**/*.h"
spec.source_files = "SDKs/AgoraEduUI/Classes/**/*.{h,m,swift}"
spec.dependency "AgoraUIBaseViews", "~> 2.8.101"
spec.dependency "AgoraEduCore", "~> 2.8.105"
spec.dependency "AgoraWidget", "~> 2.8.0"
spec.dependency "SwifterSwift"
spec.dependency "Masonry"
spec.pod_target_xcconfig = { "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64", "DEFINES_MODULE" => "YES" }
spec.user_target_xcconfig = { "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64", "DEFINES_MODULE" => "YES" }
spec.pod_target_xcconfig = { "VALID_ARCHS" => "arm64 armv7 x86_64" }
spec.user_target_xcconfig = { "VALID_ARCHS" => "arm64 armv7 x86_64" }
spec.xcconfig = { "BUILD_LIBRARY_FOR_DISTRIBUTION" => "YES" }
spec.subspec "Resources" do |ss|
ss.resource_bundles = {
"AgoraEduUI" => ["SDKs/AgoraEduUI/Assets/**/*.{xcassets,strings,gif,mp3}"]
}
end
end