mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 08:45:58 +00:00
60cb0eb36c
* add react-native-nfc-manager to detect NFC support * add "Choose auth method" screen https://www.figma.com/file/UfQjpWl1hmRchHIyY3Wvu2nW/Hardwallet-light-flows?node-id=259%3A29 * add "Hardwallet connect" screen https://www.figma.com/file/UfQjpWl1hmRchHIyY3Wvu2nW/Hardwallet-light-flows?node-id=258%3A594 Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
# 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!
|
|
|
|
# Fix for CocoaPods/issues/8110
|
|
pod 'GoogleUtilities/MethodSwizzler', '5.2.0'
|
|
|
|
# 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-nfc-manager', :path => '../node_modules/react-native-nfc-manager'
|
|
|
|
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
|