-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScribbleForge.podspec
46 lines (39 loc) · 1.48 KB
/
ScribbleForge.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
Pod::Spec.new do |s|
s.name = 'ScribbleForge'
s.version = '0.1.25'
s.license = { :type => 'MIT', :text => 'Copyright netless 2024' }
s.summary = 'Interacetive whiteboard SDK.'
s.description = 'Next generation Interacetive whiteboard SDK.'
s.homepage = 'https://github.com/netless-io/scribble-forge-release'
s.author = { 'vince' => '[email protected]' }
s.platform = :ios, '11.0'
s.swift_versions = '5.0'
s.source = { :git => 'https://github.com/netless-io/scribble-forge-release.git', :tag => s.version.to_s }
s.subspec 'Basic' do |s|
s.vendored_frameworks = 'Build/ScribbleForge.xcframework'
s.dependency 'NTLBridge', '3.2.0'
s.dependency 'RxSwift'
end
s.subspec 'Basic-XCode13' do |s|
s.vendored_frameworks = 'Build/xcode13-build/ScribbleForge.xcframework'
s.dependency 'NTLBridge'
s.dependency 'RxSwift', '6.2.0'
end
s.subspec 'AgoraRtm2.1.x' do |s|
s.dependency 'AgoraRtm_iOS', '~> 2.1.12'
s.dependency 'ScribbleForge/Basic'
end
s.subspec 'AgoraRtmKit2.2.x' do |s|
s.dependency 'AgoraRtm/RtmKit', '~> 2.2.2'
s.dependency 'ScribbleForge/Basic'
end
s.subspec 'AgoraRtm2.2.x' do |s|
s.dependency 'AgoraRtm', '~> 2.2.2'
s.dependency 'ScribbleForge/Basic'
end
s.subspec 'AgoraSpecial' do |s|
s.dependency 'AgoraRtm/RtmKit', '~> 2.2.2'
s.dependency 'ScribbleForge/Basic-XCode13'
end
s.default_subspec = 'AgoraRtm2.1.x'
end