Browse Source

Fix build errors due to AndroidAnnotations

On Android Studio 3.6.1, AA was not finding the manifest file. This small change helped, coupled with #530.
pull/533/head
Pierre-Luc Paour 4 years ago committed by GitHub
parent
commit
83844ca209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/build.gradle

2
app/build.gradle

@ -15,7 +15,7 @@ android { @@ -15,7 +15,7 @@ android {
annotationProcessorOptions {
arguments = [
"resourcePackageName": "org.transdroid",
"androidManifestFile": "app/src/main/AndroidManifest.xml"
"androidManifestFile": file("src/main/AndroidManifest.xml").absolutePath
]
}
}

Loading…
Cancel
Save