buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' } } allprojects { repositories { mavenCentral() jcenter() google() // Snapshot repository //maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } } } subprojects { apply from: "${rootDir}/gradle/dependencies.gradle" } apply from: "${rootDir}/gradle/dependencies.gradle" // Load build system information. If this file does not exist, run // `make platform/android/gradle/configuration.gradle` apply from: "${rootDir}/gradle/configuration.gradle"