SimpleMarkdown/build.gradle

31 lines
772 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 {
2020-04-20 04:19:28 +00:00
ext.kotlin_version = '1.3.72'
2017-07-25 04:37:23 +00:00
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:4.0.0'
2020-03-19 15:21:26 +00:00
classpath 'com.google.gms:google-services:4.3.3'
classpath 'io.sentry:sentry-android-gradle-plugin:1.7.34'
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
}