-
Notifications
You must be signed in to change notification settings - Fork 11
/
.AgoraRtmControl_macOS.podspec
31 lines (26 loc) · 1.2 KB
/
.AgoraRtmControl_macOS.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
#
# Be sure to run `pod lib lint AgoraRtmControl_macOS.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'AgoraRtmControl_macOS'
s.module_name = 'AgoraRtmControl'
s.version = ENV['LIB_VERSION'] || '1.8.4'
s.summary = 'Agora Real-time Messaging Wrapper.'
s.description = <<-DESC
Use this Pod to interact with Agora Real-time messaging SDK with additional properties and commands,
to make the usage simpler with the AgoraRtmController class.
DESC
s.homepage = 'https://github.com/AgoraIO-Community/VideoUIKit-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Max Cobb' => '[email protected]' }
s.source = { :git => 'https://github.com/AgoraIO-Community/VideoUIKit-iOS.git', :tag => s.version.to_s }
s.macos.deployment_target = '10.14'
s.swift_versions = ['5.0']
s.static_framework = true
s.source_files = 'Sources/AgoraRtmControl/*'
s.dependency 'AgoraRtm_macOS', '~> 1.4.10'
end