SimpleMarkdown/build.gradle

34 lines
831 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 {
2019-11-07 00:10:32 +00:00
ext.kotlin_version = '1.3.50'
2017-07-25 04:37:23 +00:00
repositories {
jcenter()
2017-12-24 01:12:43 +00:00
google()
2019-03-20 01:50:01 +00:00
maven {
url 'https://maven.fabric.io/public'
}
2017-07-25 04:37:23 +00:00
}
dependencies {
2019-11-07 16:16:44 +00:00
classpath 'com.android.tools.build:gradle:3.5.2'
2019-11-07 00:10:32 +00:00
classpath 'com.google.gms:google-services:4.3.2'
classpath 'io.fabric.tools:gradle:1.31.0'
2019-05-16 03:38:29 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
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' }
2019-05-16 03:38:29 +00:00
google()
2017-07-25 04:37:23 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}