2016-11-13 05:06:58 +00:00
|
|
|
# Uncomment the next line to define a global platform for your project
|
|
|
|
# platform :ios, '9.0'
|
|
|
|
|
2018-08-23 01:54:29 +00:00
|
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
|
2016-11-13 05:06:58 +00:00
|
|
|
target 'StatusIm' do
|
2018-08-23 01:54:29 +00:00
|
|
|
platform :ios, '9.0'
|
2016-11-13 05:06:58 +00:00
|
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
|
|
# use_frameworks!
|
|
|
|
|
|
|
|
# Pods for StatusIm
|
2018-06-29 12:28:46 +00:00
|
|
|
pod 'Firebase/Core'
|
|
|
|
pod 'Firebase/Messaging'
|
2017-12-30 04:35:25 +00:00
|
|
|
|
|
|
|
pod 'React', :path => '../node_modules/react-native'
|
|
|
|
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
|
|
|
|
pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer'
|
2018-04-11 06:00:48 +00:00
|
|
|
pod 'RNKeychain', :path => '../node_modules/react-native-keychain'
|
2018-08-23 01:54:29 +00:00
|
|
|
pod 'react-native-camera', path: '../node_modules/react-native-camera'
|
2017-12-30 04:35:25 +00:00
|
|
|
|
2018-09-18 16:27:58 +00:00
|
|
|
pod 'react-native-nfc-manager', :path => '../node_modules/react-native-nfc-manager'
|
|
|
|
|
2016-11-13 05:06:58 +00:00
|
|
|
target 'StatusImTests' do
|
|
|
|
inherit! :search_paths
|
|
|
|
# Pods for testing
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2017-10-19 04:38:20 +00:00
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
if target.name == "React"
|
|
|
|
target.remove_from_project
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|