-
Notifications
You must be signed in to change notification settings - Fork 29
/
Podfile
executable file
·37 lines (34 loc) · 1.14 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
$iOSVersion = '11.0'
platform :ios, $iOSVersion
use_frameworks!
target 'AWSKinesisVideoWebRTCDemoApp' do
pod 'AWSCognitoIdentityProvider'
pod 'AWSMobileClient'
pod 'CommonCryptoModule'
pod 'AWSKinesisVideo'
pod 'AWSKinesisVideoSignaling'
pod 'GoogleWebRTC', '~> 1.1'
pod 'Starscream', '~> 3.0'
target 'AWSKinesisVideoWebRTCDemoAppUITests' do
inherit! :complete
end
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = $iOSVersion
end
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
end
end
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
config.build_settings["ONLY_ACTIVE_ARCH"] = "YES"
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = $iOSVersion
end
end