2020-12-29 17:15:24 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2022-11-22 16:44:18 +00:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2020-12-29 17:15:24 +00:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2022-11-22 16:44:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id "com.android.application" version "7.3.0" apply false
|
|
|
|
id "com.android.library" version "7.3.0" apply false
|
|
|
|
id "org.jetbrains.kotlin.android" version "1.7.21" apply false
|
|
|
|
id "org.mozilla.rust-android-gradle.rust-android" version "0.9.3" apply false
|
2020-12-29 17:15:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-11-22 16:44:18 +00:00
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
2020-12-29 17:15:24 +00:00
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|