revanced-manager/android/build.gradle

34 lines
666 B
Groovy
Raw Normal View History

2022-07-30 21:09:59 +02:00
buildscript {
ext.kotlin_version = '1.9.0'
2022-07-30 21:09:59 +02:00
repositories {
google()
mavenCentral()
}
dependencies {
2022-09-14 23:16:33 +02:00
classpath 'com.android.tools.build:gradle:7.1.3'
2022-07-30 21:09:59 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
2022-08-06 15:04:18 +02:00
maven {
2023-10-12 02:00:39 +02:00
url 'https://jitpack.io'
2022-08-06 15:04:18 +02:00
}
2023-08-14 02:40:05 +02:00
mavenLocal()
2022-07-30 21:09:59 +02:00
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
2023-05-14 12:45:35 +02:00
tasks.register("clean", Delete) {
2022-07-30 21:09:59 +02:00
delete rootProject.buildDir
}