-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathchat-uikit.podspec
More file actions
47 lines (35 loc) · 1.81 KB
/
Copy pathchat-uikit.podspec
File metadata and controls
47 lines (35 loc) · 1.81 KB
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
47
Pod::Spec.new do |s|
s.name = 'chat-uikit'
s.version = '2.0.0'
s.summary = 'agora im UIKit'
s.homepage = 'https://github.com/AgoraIO-Usecase/AgoraChat-UIKit-ios'
s.description = <<-DESC
chat-uikit new version
DESC
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'agora' => 'dev@agora.com' }
s.source = { :git => 'https://github.com/AgoraIO-Usecase/AgoraChat-UIKit-ios.git', :tag => s.version.to_s}
s.ios.deployment_target = '13.0'
s.xcconfig = {'ENABLE_BITCODE' => 'NO'}
s.source_files = [ 'Sources/EaseChatUIKit/Classes/**/*.{h,swift}' ]
s.resources = ['Sources/EaseChatUIKit/Classes/UI/**/*.bundle','Sources/EaseChatUIKit/Classes/UI/**/*.xcprivacy']
s.dependency 'Agora_Chat_iOS', '1.3.0'
s.static_framework = true
s.swift_version = '5.0'
s.prefix_header_contents = '
# if __has_include (<chat-uikit/chat-uikit-Bridge.h>)
#import <chat-uikit/chat-uikit-Bridge.h>
# else
#import "chat-uikit-Bridge.h"
# endif
'
s.public_header_files = 'Sources/EaseChatUIKit/Classes/UI/Foundation/chat-uikit-Bridge.h'
s.preserve_paths = ['Sources/EaseChatUIKit/Classes/UI/Core/Foundation/third-party/**/*.a','Sources/EaseChatUIKit/Classes/UI/Core/Foundation/third-party/vo-amrwbenc/lib/*.a']
s.vendored_libraries = ['Sources/EaseChatUIKit/Classes/UI/Core/Foundation/third-party/**/*.a','Sources/EaseChatUIKit/Classes/UI/Core/Foundation/third-party/vo-amrwbenc/lib/*.a']
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '$(PODS_ROOT)/Sources/EaseChatUIKit/Classes/UI/Core/Foundation/third-party/**/*' } #
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'VALID_ARCHS' => 'arm64 armv7 x86_64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.frameworks = 'UIKit', 'Foundation', 'Combine', 'AudioToolbox', 'AVFoundation','AVFAudio','Photos'
end