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

View File

@@ -0,0 +1,16 @@
Pod::Spec.new do |s|
s.name = 'DailyNotificationPlugin'
s.version = '1.0.0'
s.summary = 'Daily notification plugin for Capacitor'
s.license = 'MIT'
s.homepage = 'https://github.com/timesafari/daily-notification-plugin'
s.author = 'TimeSafari'
s.source = { :git => 'https://github.com/timesafari/daily-notification-plugin.git', :tag => s.version.to_s }
s.source_files = 'Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'CapacitorCordova'
s.swift_version = '5.1'
s.module_name = 'DailyNotificationPlugin'
s.static_framework = true
end