forked from SalesforceLabs/dreamhouse-mobile-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (28 loc) · 758 Bytes
/
Podfile
File metadata and controls
36 lines (28 loc) · 758 Bytes
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
# Apple TV workspace
target 'dreamhouse' do
project 'dreamhousetv.xcodeproj'
source 'https://github.com/douglowder/SalesforceMobileSDK-iOS-Specs.git' # need to be first
source 'https://github.com/CocoaPods/Specs.git'
pod 'ReactTV', :path => './node_modules/react-native', :subspecs => [
'Core',
'CSSLayout',
'RCTImage',
'RCTNetwork',
'RCTText',
'RCTWebSocket',
'RCTLinkingIOS'
]
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++14'
end
end
end
pod 'SalesforceSDKCoreTV'
pod 'SalesforceNetworkTV'
pod 'SalesforceRestAPITV'
pod 'SmartStoreTV'
pod 'SmartSyncTV'
pod 'SalesforceReactTV'
end