mirror of
https://github.com/ente-io/ente.git
synced 2025-07-20 02:44:12 +00:00
32 lines
639 B
Groovy
32 lines
639 B
Groovy
ext {
|
|
appCompatVersion = '1.1.0' // for background_fetch
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
// mavenLocal() // for FDroid
|
|
maven {
|
|
url "${project(':background_fetch').projectDir}/libs"
|
|
}
|
|
}
|
|
ext {
|
|
compileSdkVersion = 34
|
|
targetSdkVersion = 34
|
|
appCompatVersion = "1.7.0"
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
project.evaluationDependsOn(':app')
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.buildDir
|
|
}
|