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'