mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
21cb7d5e96
- Create new folder for publications have been integrated. - Adicional touch to display the data in a more friendly way added.
22 lines
700 B
Ruby
22 lines
700 B
Ruby
platform :ios, '11.0'
|
||
use_frameworks!
|
||
|
||
# workaround to avoid Xcode caching of Pods that requires
|
||
# Product -> Clean Build Folder after new Cordova plugins installed
|
||
# Requires CocoaPods 1.6 or newer
|
||
install! 'cocoapods', :disable_input_output_paths => true
|
||
|
||
def capacitor_pods
|
||
# Automatic Capacitor Pod dependencies, do not delete
|
||
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
|
||
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
|
||
pod 'CapacitorDatepicker', :path => '..\..\node_modules\capacitor-datepicker'
|
||
pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
|
||
# Do not delete
|
||
end
|
||
|
||
target 'App' do
|
||
capacitor_pods
|
||
# Add your Pods here
|
||
end
|