Paul Woitaschek
11/05/2019, 8:46 AMDev
build type where I use dagger reflect and the Debug
and Release
build types use the regular dagger.wasyl
11/05/2019, 8:55 AMif (hasProperty("daggerReflect") {
implementation daggerReflect
} else {
implementation daggerRegular
}
and pass property during build ./gradlew app:assemble -PdaggerReflect
. You can also set this property from the AS configuration settings as default one, or set dagger-reflect as the default and not use it in the CI etc.Paul Woitaschek
11/05/2019, 2:56 PMwasyl
11/05/2019, 4:51 PMproject.gradle.taskGraph.whenReady
and check if you have any release tasks therePaul Woitaschek
11/05/2019, 9:32 PM