Dagger で自動生成されるはずのクラスがないという問題に遭遇した。
動くものを Gist に上げました。
ラズパイ3が暇そうにしてたので
Android Things を試すついでに自分のアプリLineAndPoint (Github)を入れてみた
続きを読む
こんなエラーが出た。
Execution failed for task ':app:dataBindingProcessLayoutsDebug'. > java.lang.ArrayIndexOutOfBoundsException (no error message)
警告が0になるようにしたかったので調べた
rootの build.gradle の allprojects に
buildscript { //.... } allprojects { gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:all" } } }
追加するだけだった