fix: restore missing integration_test dependency and bump version to 0.1.1

This commit is contained in:
Thomas SharedInbox
2026-05-10 11:56:40 +02:00
parent 8adb7f9a65
commit 082a39b539
2 changed files with 8 additions and 2 deletions
+7 -1
View File
@@ -47,4 +47,10 @@ flutter {
source = "../.."
}
dependencies {}
dependencies {
// integration_test is a dev dependency; the Flutter plugin loader adds it as
// debugImplementation only, but GeneratedPluginRegistrant.java (in src/main)
// references its class in all variants. Make it available for release compilation
// without bundling it in the APK.
releaseCompileOnly(project(":integration_test"))
}