feat: implement core notification functionality for iOS and Android - Add settings management, proper error handling, and platform-specific implementations

This commit is contained in:
Server
2025-03-27 01:50:19 -07:00
parent 71e0f297ff
commit 9994db28bd
20 changed files with 1461 additions and 472 deletions

19
ios/Podfile Normal file
View File

@@ -0,0 +1,19 @@
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