forked from ccm-innovation/react-native-twilio-chat
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
33 lines (28 loc) · 1023 Bytes
/
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
# Uncomment this line to define a global platform for your project
# NOTE: The underlying Twilio SDKs require a minimum deployment target of 8.1
platform :ios, '8.1'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/twilio/cocoapod-specs'
target 'ReactNativeTwilioIPMessagingExample' do
# Uncomment this line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for ReactNativeTwilioIPMessagingExample
inherit! :search_paths
# Import required Lib from react-native
# https://facebook.github.io/react-native/docs/integration-with-existing-apps.html#podfile
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'RCTActionSheet',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTText',
'RCTSettings',
'RCTVibration',
'RCTWebSocket'
]
source 'https://github.com/twilio/cocoapod-specs'
pod 'TwilioChatClient', '~> 2.1.0'
pod 'TwilioAccessManager', '~> 1.0.0'
end