Files
2022-03-06 03:09:36 -04:00

34 lines
864 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
def computeBuildToolsVersion = { -> project.hasProperty("androidBuildToolsVersion") ? androidBuildToolsVersion : "${ANDRIOD_BUILD_TOOLS_VERSION}"}
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.android.tools.build:gradle:${computeBuildToolsVersion}"
classpath 'org.mozilla.rust-android-gradle:plugin:0.9.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
project.ext.useAndroidX=true