Skip to content

Commit

Permalink
fix bug with androidannotations
Browse files Browse the repository at this point in the history
  • Loading branch information
CampelloManuel committed Apr 28, 2024
1 parent ac6b3a7 commit ac4c7c6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()
]
}
}
}
Expand Down

0 comments on commit ac4c7c6

Please sign in to comment.