scratchjr/android/ScratchJr/build.gradle

27 lines
637 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 {
jcenter()
2018-04-04 12:47:32 -04:00
maven {
url "https://maven.google.com"
}
2016-01-08 14:31:04 -05:00
}
dependencies {
2018-04-04 12:47:32 -04:00
classpath 'com.android.tools.build:gradle:2.2.1'
2016-01-08 14:31:04 -05:00
classpath 'com.google.gms:google-services:1.5.0-beta2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2018-04-04 12:47:32 -04:00
maven {
url "https://maven.google.com"
}
2016-01-08 14:31:04 -05:00
}
}