buildscript { repositories { mavenCentral() google() } dependencies { classpath 'com.android.tools.build:gradle:8.13.0' } } allprojects { version = VERSION_NAME group = GROUP repositories { maven{url "https://github.com/shaubert/maven-repo/raw/master/releases"} mavenCentral() google() repositories { maven { url "https://www.jitpack.io" } } } tasks.withType(JavaCompile) { options.encoding = "UTF-8" options.compilerArgs << "-Xlint:unchecked" } }