Files
iNaturalistReactNative/ios/Podfile
Johannes Klein 1f0300db57 Update react native to 0.76.9 (#2974)
* Changes according to the RN upgrade helper

* Update .flowconfig

* Update Gemfile.lock

* Fix typo in minimunSDK version specified

* Disable New Architecture

* Prefer double-quotes

* Update .flowconfig

* Update vision camera patch version number

* Update package-lock.json

* Update Podfile.lock

* Remove no longer needed mock
2025-06-27 14:13:23 -07:00

115 lines
3.5 KiB
Ruby

# frozen_string_literal: true
# Disable New Architecture
ENV["RCT_NEW_ARCH_ENABLED"] = "0"
# setup instructions from https://www.npmjs.com/package/react-native-permissions
def node_require( script )
# Resolve script with node to allow for hoisting
require Pod::Executable.execute_command(
"node",
[
"-p", "require.resolve('#{script}', {paths: [process.argv[1]]})",
__dir__
]
).strip
end
node_require( "react-native/scripts/react_native_pods.rb" )
node_require( "react-native-permissions/scripts/setup.rb" )
platform :ios, min_ios_version_supported
prepare_react_native_project!
# ⬇️ uncomment wanted permissions
setup_permissions(
[
# 'AppTrackingTransparency',
# 'BluetoothPeripheral',
# 'Calendars',
"Camera",
# 'Contacts',
# 'FaceID',
"LocationAccuracy",
"LocationAlways",
"LocationWhenInUse",
"MediaLibrary",
"Microphone",
# 'Motion',
# 'Notifications',
"PhotoLibraryAddOnly",
"PhotoLibrary"
# 'Reminders',
# 'Siri',
# 'SpeechRecognition',
# 'StoreKit',
]
)
linkage = ENV.fetch( "USE_FRAMEWORKS", nil )
unless linkage.nil?
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
use_frameworks! linkage: linkage.to_sym
end
target "iNaturalistReactNative" do
config = use_native_modules!
use_react_native!(
path: config[:reactNativePath],
# An absolute path to your application root.
app_path: "#{Pod::Config.instance.installation_root}/.."
)
pod "react-native-config", path: "../node_modules/react-native-config"
pod "RNVectorIcons", path: "../node_modules/react-native-vector-icons"
envfiles = {
"Debug" => "$(PODS_ROOT)/../../.env.staging",
"Release" => "$(PODS_ROOT)/../../.env"
}.freeze
post_install do | installer |
# use different .env files for staging and production
# https://github.com/luggit/react-native-config#ios-1
installer.pods_project.targets.each do | target |
target.build_configurations.each do | build_config |
if target.name == "react-native-config"
build_config.build_settings["ENVFILE"] = envfiles[build_config.name]
end
end
end
# code below appears to be necessary for building pods with XCode 14: https://github.com/facebook/react-native/issues/34673#issuecomment-1252114414
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
react_native_post_install(
installer,
config[:reactNativePath],
mac_catalyst_enabled: false
# :ccache_enabled => true
)
# https://github.com/Agontuk/react-native-geolocation-service/issues/287#issuecomment-980772489
installer.pods_project.targets.each do | target |
target.build_configurations.each do | build_config |
build_config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
build_config.build_settings["APPLICATION_EXTENSION_API_ONLY"] = "NO"
build_config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "$(inherited)"
end
end
# react_native_post_install(installer)
`sed -i -e $'s/__IPHONE_10_0/__IPHONE_12_0/' Pods/RCT-Folly/folly/portability/Time.h`
end
end
target "iNaturalistReactNative-ShareExtension" do
use_react_native!(
# to enable hermes on iOS, change `false` to `true` and then install pods
hermes_enabled: true
)
pod "RNShareMenu", path: "../node_modules/react-native-share-menu"
# Manually link packages here to keep your extension bundle size minimal
end