This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-android/build.gradle

31 lines
658 B
Groovy
Raw Normal View History

2019-07-18 13:29:28 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2019-11-08 20:37:47 +08:00
classpath 'com.android.tools.build:gradle:3.5.2'
2019-07-18 13:29:28 +08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://dl.bintray.com/osborn/Android"
}
2019-11-09 16:57:45 +08:00
maven { url 'https://jitpack.io' }
2019-07-18 13:29:28 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}