scratchjr/android/ScratchJr/build.gradle

29 lines
665 B
Groovy
Raw Normal View History

2016-01-08 14:31:04 -05:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2018-04-04 12:47:32 -04:00
maven {
url "https://maven.google.com"
}
jcenter()
google()
2016-01-08 14:31:04 -05:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.3.2'
2016-01-08 14:31:04 -05:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2018-04-04 12:47:32 -04:00
maven {
url "https://maven.google.com"
}
jcenter()
google()
2016-01-08 14:31:04 -05:00
}
}