2021-10-24 00:43:00 +02:00
|
|
|
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
|
|
|
|
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
|
|
|
|
require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
|
2021-01-28 00:41:53 +01:00
|
|
|
|
2021-10-24 00:43:00 +02:00
|
|
|
platform :ios, '12.0'
|
|
|
|
|
|
|
|
require 'json'
|
|
|
|
podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
|
2021-01-28 00:41:53 +01:00
|
|
|
|
|
|
|
target 'tooot' do
|
2021-10-24 00:43:00 +02:00
|
|
|
use_expo_modules!
|
2021-01-28 00:41:53 +01:00
|
|
|
config = use_native_modules!
|
|
|
|
|
2021-03-16 00:36:32 +01:00
|
|
|
use_react_native!(
|
|
|
|
:path => config[:reactNativePath],
|
2021-10-24 00:43:00 +02:00
|
|
|
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
|
2021-03-16 00:36:32 +01:00
|
|
|
)
|
2021-01-28 00:41:53 +01:00
|
|
|
|
2021-03-16 00:36:32 +01:00
|
|
|
# Enables Flipper.
|
2021-01-28 00:41:53 +01:00
|
|
|
#
|
2021-03-16 00:36:32 +01:00
|
|
|
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
|
|
# you should disable the next line.
|
|
|
|
# use_flipper!()
|
2021-01-31 03:09:35 +01:00
|
|
|
|
2021-03-16 00:36:32 +01:00
|
|
|
post_install do |installer|
|
|
|
|
react_native_post_install(installer)
|
2022-05-02 22:31:22 +02:00
|
|
|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
|
|
|
|
end
|
|
|
|
end
|
2021-01-31 03:09:35 +01:00
|
|
|
end
|
|
|
|
end
|
2022-05-02 22:31:22 +02:00
|
|
|
|
|
|
|
target 'ShareExtension' do
|
|
|
|
use_react_native!(
|
|
|
|
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
|
|
|
|
)
|
|
|
|
|
|
|
|
pod 'RNShareMenu', :path => '../node_modules/react-native-share-menu'
|
|
|
|
end
|