status-react/ios/Podfile

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-11-13 05:06:58 +00:00
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
2016-11-13 05:06:58 +00:00
target 'StatusIm' do
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
pod 'Firebase/Core'
pod 'Firebase/Messaging'
# RCTImage is requered by react-native-svg
pod 'React', :path => '../node_modules/react-native', :subspecs => ['RCTImage',]
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'
pod 'react-native-camera', path: '../node_modules/react-native-camera'
pod 'TouchID', path: '../node_modules/react-native-touch-id'
pod 'SQLCipher', '~>3.0'
pod 'SSZipArchive'
# when removing svg pod, RCTImage is needed to be removed from React subspecs
pod 'RNSVG', :path => '../node_modules/react-native-svg'
2016-11-13 05:06:58 +00:00
target 'StatusImTests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end