mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-26 00:39:48 -04:00
20 lines
552 B
Plaintext
20 lines
552 B
Plaintext
![]() |
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'
|
|||
|
# Do not delete
|
|||
|
end
|
|||
|
|
|||
|
target 'App' do
|
|||
|
capacitor_pods
|
|||
|
# Add your Pods here
|
|||
|
end
|