SimpleMarkdown/build.gradle

30 lines
773 B
Groovy
Raw Normal View History

2017-07-25 04:37:23 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2017-12-24 01:12:43 +00:00
google()
2017-07-25 04:37:23 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
2017-07-25 04:37:23 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
2018-10-01 00:53:03 +00:00
classpath 'com.google.gms:google-services:4.0.1'
classpath 'com.google.firebase:firebase-plugins:1.1.5'
2017-07-25 04:37:23 +00:00
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://s3.amazonaws.com/repo.commonsware.com"
}
2017-08-10 00:57:34 +00:00
maven { url 'https://maven.google.com' }
2017-07-25 04:37:23 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}