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
This commit is contained in:
Matthew Raymer
2025-10-13 10:51:26 +00:00
parent 31f5adcfd1
commit 9fdf77dbb0
2 changed files with 12 additions and 0 deletions

6
capacitor.plugins.json Normal file
View File

@@ -0,0 +1,6 @@
[
{
"name": "DailyNotification",
"class": "com.timesafari.dailynotification.DailyNotificationPlugin"
}
]

6
plugins Normal file
View File

@@ -0,0 +1,6 @@
[
{
"name": "DailyNotification",
"class": "com.timesafari.dailynotification.DailyNotificationPlugin"
}
]