-
Notifications
You must be signed in to change notification settings - Fork 11
/
AgoraUIKit_iOS.podspec
32 lines (26 loc) · 1.15 KB
/
AgoraUIKit_iOS.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
#
# Be sure to run `pod lib lint AgoraUIKit_iOS.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 = 'AgoraUIKit_iOS'
s.module_name = 'AgoraUIKit'
s.version = ENV['LIB_VERSION']
s.summary = 'Agora video session UIKit template.'
s.description = <<-DESC
Use this Pod to create a video UIKit view that can be easily added to your iOS application.
DESC
s.homepage = 'https://github.com/AgoraIO-Community/iOS-UIKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Max Cobb' => '[email protected]' }
s.source = { :git => 'https://github.com/AgoraIO-Community/iOS-UIKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.swift_versions = ['5.0']
s.static_framework = true
s.source_files = 'Sources/Agora-Video-UIKit/*'
s.dependency 'AgoraRtcEngine_iOS', '~> 4.2.0'
s.dependency 'AgoraRtmControl_iOS', "#{s.version.to_s}"
end