23 lines
422 B
Ruby
23 lines
422 B
Ruby
platform :ios, '9.0'
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
|
|
target 'Eventment' do
|
|
# Pods for Eventment
|
|
target 'EventmentTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
use_native_modules!
|
|
end
|
|
|
|
target 'Eventment-tvOS' do
|
|
# Pods for Eventment-tvOS
|
|
|
|
target 'Eventment-tvOSTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
end
|