ente/android/build.gradle

38 lines
811 B
Groovy
Raw Normal View History

2020-03-24 19:59:36 +00:00
buildscript {
2023-06-06 10:18:54 +00:00
ext.kotlin_version = '1.8.21'
2020-03-24 19:59:36 +00:00
repositories {
google()
jcenter()
}
ext.appCompatVersion = '1.1.0' // for background_fetch
2020-03-24 19:59:36 +00:00
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2023-02-08 10:21:24 +00:00
classpath 'com.android.tools.build:gradle:7.1.2' // 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
}