mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-30 12:30:16 +02:00
42 lines
996 B
Groovy
42 lines
996 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.8.10'
|
|
ext {
|
|
compileSdkVersion = 34 // or latest
|
|
targetSdkVersion = 34 // or latest
|
|
appCompatVersion = "1.4.2" // or latest
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:7.4.2"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "dev.rikka.tools.refine:gradle-plugin:4.3.1"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
// [required] background_fetch
|
|
url "${project(':background_fetch').projectDir}/libs"
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = '../build'
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
}
|
|
subprojects {
|
|
project.evaluationDependsOn(':app')
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.buildDir
|
|
}
|