mirror of
https://github.com/logseq/logseq.git
synced 2026-04-29 00:24:51 +00:00
* feat(mobile): share intent * feat(ios): share content * feat(share): fix kUTType* deprecation * feat(share): fix result of call to 'openURL' is unused * fix screenshot copy rewrite issue * fix AndroidManifest.xml * fix(iOS): app not showing in share list * address comment
25 lines
1006 B
Ruby
25 lines
1006 B
Ruby
platform :ios, '12.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/@capacitor/ios'
|
|
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
|
|
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
|
|
pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
|
|
pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
|
|
pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
|
|
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
|
|
pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
|
|
pod 'SendIntent', :path => '../../node_modules/send-intent'
|
|
end
|
|
|
|
target 'Logseq' do
|
|
capacitor_pods
|
|
# Add your Pods here
|
|
end
|