-
Notifications
You must be signed in to change notification settings - Fork 2
/
AgoraChatroomUIKit.podspec
41 lines (31 loc) · 1.88 KB
/
AgoraChatroomUIKit.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
#
# Be sure to run `pod lib lint AgoraChatroomUIKit.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 = 'AgoraChatroomUIKit'
s.version = '2.0.0'
s.summary = 'A short description of AgoraChatroomUIKit.'
s.description = <<-DESC
This product is mainly designed to solve most user needs for chat rooms in pan-entertainment business scenarios. It mainly solves the problem for users that directly integrating the SDK is cumbersome and complex, and some APIs have poor experience (from the perspective of user-side developers) )And other issues. We are committed to creating chat room UIKit products with simple integration, high degree of freedom, simple process, and sufficiently detailed documentation.
DESC
s.homepage = 'https://github.com/AgoraIO-Usecase/AgoraChat-UIKit-Chatroom-iOS'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'zjc19891106' => '[email protected]' }
s.source = { :git => 'https://github.com/AgoraIO-Usecase/AgoraChat-UIKit-Chatroom-iOS.git', :tag => s.version.to_s }
# s.social_media_url = 'https://github.com/zjc19891106'
s.ios.deployment_target = '13.0'
s.xcconfig = {'ENABLE_BITCODE' => 'NO'}
s.source_files = ['Sources/ChatroomUIKit/Classes/**/*.swift']
s.resources = ['Sources/ChatroomUIKit/**/*.bundle']
s.dependency 'Agora_Chat_iOS', '1.3.0'
s.static_framework = true
s.swift_version = '5.0'
# s.source_files = 'Sources/ChatroomUIKit/Classes/**/*'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'Foundation','Combine'
end