Offline login implemented

This commit is contained in:
Caesar2011
2018-07-08 15:54:44 +02:00
parent 336bd55d9d
commit d83f9279d8
10 changed files with 162 additions and 118 deletions

View File

@@ -18,6 +18,12 @@ allprojects {
jcenter()
google()
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
task clean(type: Delete) {