mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2026-08-27 12:51:15 +00:00
35 lines
981 B
Ruby
35 lines
981 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, '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!({ 'Flipper' => '0.74.0' })
|
|
end
|
|
|
|
target 'CameraRollExample-tvOS' do
|
|
# Pods for CameraRollExample-tvOS
|
|
|
|
target 'CameraRollExample-tvOSTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
end
|