From 082a39b539642c5d7f83f2975cc8b83f84abc3a9 Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Sun, 10 May 2026 11:56:40 +0200 Subject: [PATCH] fix: restore missing integration_test dependency and bump version to 0.1.1 --- android/app/build.gradle.kts | 8 +++++++- pubspec.yaml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 470293b..078a2d0 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -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")) +} diff --git a/pubspec.yaml b/pubspec.yaml index 28a13b0..234d573 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: sharedinbox description: IMAP email client for Android, iOS, and Desktop. publish_to: none -version: 0.1.0 +version: 0.1.1 environment: sdk: '>=3.3.0 <4.0.0'