mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 23:28:56 +03:00
38 lines
893 B
Ruby
38 lines
893 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, '12.0'
|
|
|
|
target 'Ecency' do
|
|
config = use_native_modules!
|
|
permissions_path = '../node_modules/react-native-permissions/ios'
|
|
pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
|
|
# 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
|