# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

source 'https://github.com/CocoaPods/Specs.git'

target 'StatusIm' do
  platform :ios, '9.0'
  # 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'

  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'
  pod 'RNKeychain', :path => '../node_modules/react-native-keychain'
  pod 'react-native-camera', path: '../node_modules/react-native-camera'
  pod 'react-native-webview', path: '../node_modules/react-native-webview'
  pod 'TouchID', path: '../node_modules/react-native-touch-id'
  pod 'SQLCipher', '~>3.0'
  pod 'SSZipArchive'

  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