From 9fdf77dbb007e5c7c202901f39f3e8ed2b4afc95 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Mon, 13 Oct 2025 10:51:26 +0000 Subject: [PATCH] feat(android): add plugin registry files for Capacitor 6 - Add root-level capacitor.plugins.json with DailyNotification plugin entry - Add plugins file with plugin class mapping - These files may be generated by annotation processor or build tools - Ensures plugin discovery works across different Capacitor configurations --- capacitor.plugins.json | 6 ++++++ plugins | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 capacitor.plugins.json create mode 100644 plugins diff --git a/capacitor.plugins.json b/capacitor.plugins.json new file mode 100644 index 0000000..9c4fcb6 --- /dev/null +++ b/capacitor.plugins.json @@ -0,0 +1,6 @@ +[ + { + "name": "DailyNotification", + "class": "com.timesafari.dailynotification.DailyNotificationPlugin" + } +] diff --git a/plugins b/plugins new file mode 100644 index 0000000..9c4fcb6 --- /dev/null +++ b/plugins @@ -0,0 +1,6 @@ +[ + { + "name": "DailyNotification", + "class": "com.timesafari.dailynotification.DailyNotificationPlugin" + } +]