You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
441 B
19 lines
441 B
platform :ios, '13.0'
|
|
use_frameworks!
|
|
|
|
source 'https://cdn.cocoapods.org/'
|
|
|
|
def capacitor_pods
|
|
pod 'Capacitor', :path => '../node_modules/@capacitor/ios'
|
|
pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios'
|
|
end
|
|
|
|
target 'DailyNotificationPlugin' do
|
|
capacitor_pods
|
|
pod 'DailyNotificationPlugin', :path => '.'
|
|
end
|
|
|
|
target 'DailyNotificationPluginTests' do
|
|
capacitor_pods
|
|
pod 'DailyNotificationPlugin', :path => '.'
|
|
end
|