Skip to content

Commit

Permalink
Turn off Dagger lints since causing crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarr21 committed Apr 3, 2024
1 parent 860189f commit e589d33
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions kotlin-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ android {
}

flavorDimensions "default"

lintOptions {
// Turn off Dagger lints
disable "JvmStaticProvidesInObjectDetector"
disable "FieldSiteTargetOnQualifierAnnotation"
disable "ModuleCompanionObjects"
disable "ModuleCompanionObjectsNotInModuleParent"
}
}

tasks.withType(KotlinCompile).all {
Expand Down

0 comments on commit e589d33

Please sign in to comment.