revanced-manager/android/build.gradle

36 lines
683 B
Groovy
Raw Normal View History

2022-07-31 00:39:59 +05:30
buildscript {
2023-10-28 07:19:07 -07:00
ext.kotlin_version = '1.9.10'
2022-07-31 00:39:59 +05:30
repositories {
google()
mavenCentral()
}
dependencies {
2023-10-28 07:19:07 -07:00
classpath 'com.android.tools.build:gradle:8.1.2'
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}"
}
2022-07-31 00:39:59 +05:30
subprojects {
project.evaluationDependsOn(':app')
}
2023-05-14 16:30:35 +05:45
tasks.register("clean", Delete) {
delete rootProject.buildDir
2022-07-31 00:39:59 +05:30
}