mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-02 11:15:35 +03:00
37 lines
761 B
Ruby
37 lines
761 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 'Ecency' do
|
|
config = use_native_modules!
|
|
|
|
# Pods for Ecency
|
|
|
|
use_react_native!(:path => config["reactNativePath"])
|
|
|
|
target 'EcencyTests' do
|
|
inherit! :complete
|
|
# Pods for testing
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
target 'Ecency-tvOS' do
|
|
# Pods for Ecency-tvOS
|
|
|
|
target 'Ecency-tvOSTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
end
|