revanced-manager/android/build.gradle

34 lines
666 B
Groovy
Raw Normal View History

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