mirror of
https://github.com/status-im/waku-react-native.git
synced 2025-02-08 12:34:12 +00:00
27 lines
858 B
Ruby
27 lines
858 B
Ruby
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
|
|
platform :ios, '11.0'
|
|
|
|
target 'ReactNativeExample' do
|
|
config = use_native_modules!
|
|
|
|
use_react_native!(:path => config["reactNativePath"])
|
|
|
|
pod 'waku-react-native', :path => '../..'
|
|
|
|
# Enables Flipper.
|
|
#
|
|
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
# you should disable these next few lines.
|
|
use_flipper!({ 'Flipper' => '0.125.0', 'Flipper-Folly' => '~> 2.6', 'Flipper-RSocket' => '~> 1.4' })
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
|
|
end
|
|
end
|
|
flipper_post_install(installer)
|
|
end
|
|
end
|