build(android): register edge-to-edge support plugin in gradle

This commit is contained in:
Johannes Millan 2026-05-28 23:54:51 +02:00
parent d009529823
commit 9259e0051c
2 changed files with 4 additions and 0 deletions

View file

@ -17,6 +17,7 @@ dependencies {
implementation project(':capacitor-local-notifications')
implementation project(':capacitor-share')
implementation project(':capawesome-capacitor-android-dark-mode-support')
implementation project(':capawesome-capacitor-android-edge-to-edge-support')
implementation project(':capawesome-capacitor-background-task')
}

View file

@ -26,5 +26,8 @@ project(':capacitor-share').projectDir = new File('../node_modules/@capacitor/sh
include ':capawesome-capacitor-android-dark-mode-support'
project(':capawesome-capacitor-android-dark-mode-support').projectDir = new File('../node_modules/@capawesome/capacitor-android-dark-mode-support/android')
include ':capawesome-capacitor-android-edge-to-edge-support'
project(':capawesome-capacitor-android-edge-to-edge-support').projectDir = new File('../node_modules/@capawesome/capacitor-android-edge-to-edge-support/android')
include ':capawesome-capacitor-background-task'
project(':capawesome-capacitor-background-task').projectDir = new File('../node_modules/@capawesome/capacitor-background-task/android')