ente/mobile/android/build.gradle

27 lines
519 B
Groovy
Raw Permalink Normal View History

ext {
appCompatVersion = '1.1.0' // for background_fetch
2020-03-24 19:59:36 +00:00
}
allprojects {
repositories {
google()
jcenter()
2023-06-06 10:18:54 +00:00
mavenCentral()
2021-05-24 08:39:07 +00:00
// mavenLocal() // for FDroid
maven {
url "${project(':background_fetch').projectDir}/libs"
}
2020-03-24 19:59:36 +00:00
}
}
rootProject.buildDir = '../build'
2020-05-01 20:39:36 +00:00
2020-03-24 19:59:36 +00:00
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
2020-03-24 19:59:36 +00:00
delete rootProject.buildDir
}