-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Podfile
44 lines (38 loc) · 1.52 KB
/
Podfile
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
# Uncomment the next line to define a global platform for your project
target 'Romo' do
platform :ios, '7.0'
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for Romo
pod 'Romo'#, :path => '../Romo-iOS-SDK'
pod 'Romo/RMCharacter'#, :path => '../Romo-iOS-SDK'
pod 'Romo/RMVision'#, :path => '../Romo-iOS-SDK'
pod 'CocoaLumberjack'
pod 'AFNetworking', '~> 3.0'
pod 'FFmpeg-static', :git => 'https://github.com/stephanecopin/FFmpeg-static.git'
end
target 'Romo Control' do
platform :ios, '8.0'
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for Romo Control
pod 'Romo/RMCharacter'#, :path => '../Romo-iOS-SDK'
pod 'CocoaLumberjack'
pod 'SocketRocket', :git => 'https://github.com/Gkpsundar/SocketRocket.git'
end
post_install do |installer|
# Mac Catalyst workaround
installer.pods_project.targets.each do |target|
# Fix bundle targets' 'Signing Certificate' to 'Sign to Run Locally'
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGN_IDENTITY[sdk=macosx*]'] = '-'
end
end
end
# Needed for simulators running on Apple Silicon
installer
.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end