- Add capacitor.plugins.json for main plugin registration - Add plugin dependency to test app build configuration - Add local plugin dependency to test app package.json - Update package-lock.json with plugin dependency resolution Enables proper plugin discovery and integration in test environment.
20 lines
437 B
Groovy
20 lines
437 B
Groovy
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
|
|
|
|
android {
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
|
|
dependencies {
|
|
implementation project(':timesafari-daily-notification-plugin')
|
|
|
|
}
|
|
|
|
|
|
if (hasProperty('postBuildExtras')) {
|
|
postBuildExtras()
|
|
}
|