mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Oops, fixes syntax of autolink script landed in https://github.com/facebook/react-native/pull/24867. ## Changelog [iOS] [Fixed] - Fixes syntax of autolink script Pull Request resolved: https://github.com/facebook/react-native/pull/24882 Differential Revision: D15371272 Pulled By: cpojer fbshipit-source-id: 8538be040b8b116b9651dc26749ab8febad0fe7c
25 lines
831 B
Ruby
25 lines
831 B
Ruby
platform :ios, '9.0'
|
|
|
|
require_relative '../scripts/autolink-ios'
|
|
|
|
target 'RNTester' do
|
|
# Uncomment for Swift
|
|
# use_frameworks!
|
|
|
|
project 'RNTesterPods.xcodeproj'
|
|
|
|
# Enable TurboModule
|
|
use_react_native!(path: "..", turbo_modules_enabled: true)
|
|
pod 'React-turbomodule-samples', :path => '../ReactCommon/turbomodule/samples'
|
|
|
|
# Additional Pods which aren't included in the default Podfile
|
|
pod 'React-RCTCameraRoll', :path => '../Libraries/CameraRoll'
|
|
pod 'React-ART', :path => '../Libraries/ART'
|
|
pod 'React-RCTPushNotification', :path => '../Libraries/PushNotificationIOS'
|
|
|
|
# Additional Pods which are classed as unstable
|
|
#
|
|
# To use fabric: add `fabric_enabled` option to the use_react_native method above, like below
|
|
# use_react_native!(path: "..", turbo_modules_enabled: true, fabric_enabled: true)
|
|
end
|