123456789101112131415161718192021222324252627282930 |
- require_relative '../../node_modules/.pnpm/@capacitor+ios@6.2.1_@capacitor+core@6.2.1/node_modules/@capacitor/ios/scripts/pods_helpers'
- platform :ios, '13.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
- pod 'Capacitor', :path => '../../node_modules/.pnpm/@capacitor+ios@6.2.1_@capacitor+core@6.2.1/node_modules/@capacitor/ios'
- pod 'CapacitorCordova', :path => '../../node_modules/.pnpm/@capacitor+ios@6.2.1_@capacitor+core@6.2.1/node_modules/@capacitor/ios'
- pod 'CapacitorApp', :path => '../../node_modules/.pnpm/@capacitor+app@6.0.2_@capacitor+core@6.2.1/node_modules/@capacitor/app'
- pod 'CapacitorBrowser', :path => '../../node_modules/.pnpm/@capacitor+browser@7.0.1_@capacitor+core@6.2.1/node_modules/@capacitor/browser'
- pod 'CapacitorHaptics', :path => '../../node_modules/.pnpm/@capacitor+haptics@6.0.2_@capacitor+core@6.2.1/node_modules/@capacitor/haptics'
- pod 'CapacitorKeyboard', :path => '../../node_modules/.pnpm/@capacitor+keyboard@6.0.3_@capacitor+core@6.2.1/node_modules/@capacitor/keyboard'
- pod 'CapacitorSplashScreen', :path => '../../node_modules/.pnpm/@capacitor+splash-screen@7.0.1_@capacitor+core@6.2.1/node_modules/@capacitor/splash-screen'
- pod 'CapacitorStatusBar', :path => '../../node_modules/.pnpm/@capacitor+status-bar@6.0.2_@capacitor+core@6.2.1/node_modules/@capacitor/status-bar'
- pod 'CapgoCapacitorNavigationBar', :path => '../../node_modules/.pnpm/@capgo+capacitor-navigation-bar@6.1.75_@capacitor+core@6.2.1/node_modules/@capgo/capacitor-navigation-bar'
- end
- target 'App' do
- capacitor_pods
- # Add your Pods here
- end
- post_install do |installer|
- assertDeploymentTarget(installer)
- end
|