-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
4,608 additions
and
1,743 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,22 @@ | ||
platform :ios, '10.0' | ||
|
||
require_relative '../node_modules/react-native-unimodules/cocoapods' | ||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' | ||
require_relative '../node_modules/react-native/scripts/react_native_pods' | ||
require_relative '../node_modules/react-native-unimodules/cocoapods.rb' | ||
|
||
target 'PowerAuthDemo' do | ||
use_frameworks! | ||
rnPrefix = "../node_modules/react-native" | ||
|
||
# React Native and its dependencies | ||
pod 'FBLazyVector', :path => "#{rnPrefix}/Libraries/FBLazyVector" | ||
pod 'FBReactNativeSpec', :path => "#{rnPrefix}/Libraries/FBReactNativeSpec" | ||
pod 'RCTRequired', :path => "#{rnPrefix}/Libraries/RCTRequired" | ||
pod 'RCTTypeSafety', :path => "#{rnPrefix}/Libraries/TypeSafety" | ||
pod 'React', :path => "#{rnPrefix}/" | ||
pod 'React-Core', :path => "#{rnPrefix}/" | ||
pod 'React-CoreModules', :path => "#{rnPrefix}/React/CoreModules" | ||
pod 'React-RCTActionSheet', :path => "#{rnPrefix}/Libraries/ActionSheetIOS" | ||
pod 'React-RCTAnimation', :path => "#{rnPrefix}/Libraries/NativeAnimation" | ||
pod 'React-RCTBlob', :path => "#{rnPrefix}/Libraries/Blob" | ||
pod 'React-RCTImage', :path => "#{rnPrefix}/Libraries/Image" | ||
pod 'React-RCTLinking', :path => "#{rnPrefix}/Libraries/LinkingIOS" | ||
pod 'React-RCTNetwork', :path => "#{rnPrefix}/Libraries/Network" | ||
pod 'React-RCTSettings', :path => "#{rnPrefix}/Libraries/Settings" | ||
pod 'React-RCTText', :path => "#{rnPrefix}/Libraries/Text" | ||
pod 'React-RCTVibration', :path => "#{rnPrefix}/Libraries/Vibration" | ||
pod 'React-Core/RCTWebSocket', :path => "#{rnPrefix}/" | ||
pod 'React-Core/DevSupport', :path => "#{rnPrefix}/" | ||
pod 'React-cxxreact', :path => "#{rnPrefix}/ReactCommon/cxxreact" | ||
pod 'React-jsi', :path => "#{rnPrefix}/ReactCommon/jsi" | ||
pod 'React-jsiexecutor', :path => "#{rnPrefix}/ReactCommon/jsiexecutor" | ||
pod 'React-jsinspector', :path => "#{rnPrefix}/ReactCommon/jsinspector" | ||
pod 'ReactCommon/jscallinvoker', :path => "#{rnPrefix}/ReactCommon" | ||
pod 'ReactCommon/turbomodule/core', :path => "#{rnPrefix}/ReactCommon" | ||
pod 'Yoga', :path => "#{rnPrefix}/ReactCommon/yoga" | ||
pod 'DoubleConversion', :podspec => "#{rnPrefix}/third-party-podspecs/DoubleConversion.podspec" | ||
pod 'glog', :podspec => "#{rnPrefix}/third-party-podspecs/glog.podspec" | ||
pod 'Folly', :podspec => "#{rnPrefix}/third-party-podspecs/Folly.podspec" | ||
|
||
# Other native modules | ||
platform :ios, '10.0' | ||
|
||
# Automatically detect installed unimodules | ||
target 'PowerAuthDemo' do | ||
config = use_native_modules! | ||
use_unimodules! | ||
|
||
# react-native-cli autolinking | ||
use_native_modules! | ||
|
||
use_react_native!(:path => config["reactNativePath"]) | ||
|
||
pod 'react-native-powerauth-mobile-sdk', :path => '../node_modules/react-native-powerauth-mobile-sdk' | ||
|
||
# Enables Flipper. | ||
# | ||
# Note that if you have use_frameworks! enabled, Flipper will not work and | ||
# you should disable these next few lines. | ||
use_flipper! | ||
post_install do |installer| | ||
flipper_post_install(installer) | ||
end | ||
end |
Oops, something went wrong.