From ac4c7c6286120db903a49417c6fbcb60d675d634 Mon Sep 17 00:00:00 2001 From: Campello Manuel <9112949+CampelloManuel@users.noreply.github.com> Date: Sun, 28 Apr 2024 12:21:51 +0200 Subject: [PATCH] fix bug with androidannotations --- app/build.gradle | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 664738e8..761eae1d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -84,9 +84,13 @@ android { javaCompileOptions { annotationProcessorOptions { - // you need this to make org.androidannotations:androidannotations compile - // in "playStore" build type. Once you get rid of the library, delete this - arguments = ["resourcePackageName": android.defaultConfig.applicationId] + // you need these to make org.androidannotations:androidannotations compile + // in "playStore" build type. + // TODO get rid of androidannotations and delete this javaCompileOptions {...} + arguments = [ + "resourcePackageName": android.defaultConfig.applicationId, + "androidManifestFile": "$projectDir/src/main/AndroidManifest.xml".toString() + ] } } }