doukutsu-rs/app/build.gradle

29 lines
686 B
Groovy
Raw Normal View History

2021-02-24 08:28:47 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
2023-01-25 14:25:42 +00:00
mavenCentral()
2021-02-24 08:28:47 +00:00
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
2023-01-25 17:23:15 +00:00
classpath "com.android.tools.build:gradle:7.3.1"
2021-02-24 08:28:47 +00:00
classpath "gradle.plugin.com.github.willir.rust:plugin:0.3.4"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2023-01-25 14:25:42 +00:00
mavenCentral()
2021-02-24 08:28:47 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}