mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-01-27 18:04:51 +00:00
daa6a9faeb
Co-authored-by: Jesse Katsumata <niconico.clarinet@gmail.com>
38 lines
1.0 KiB
Ruby
38 lines
1.0 KiB
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, '10.0'
|
|
|
|
target 'CameraRollExample' do
|
|
# Added for this project (react-native-cameraroll)
|
|
pod 'react-native-cameraroll', :path => "../.."
|
|
|
|
# `'../../node_modules/react-native'` added for
|
|
# react-native-cameraroll (our node_modules doesn't live in
|
|
# example/).
|
|
use_react_native!(:path => '../../node_modules/react-native')
|
|
|
|
target 'CameraRollExampleTests' do
|
|
inherit! :complete
|
|
# Pods for testing
|
|
end
|
|
|
|
# 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
|
|
|
|
target 'CameraRollExample-tvOS' do
|
|
# Pods for CameraRollExample-tvOS
|
|
|
|
target 'CameraRollExample-tvOSTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
end
|