revanced-integrations/build.gradle.kts

19 lines
545 B
Plaintext
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
2022-12-07 01:28:52 +01:00
classpath("com.android.tools.build:gradle:7.3.1")
2022-10-11 15:47:14 +02:00
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}