mirror of
https://github.com/immich-app/immich.git
synced 2024-12-26 10:50:29 +02:00
71b6d8b569
* Bump androidx work version to 2.9.0 * Check that server is reachable before starting backup work * Dart format * Cleanup debug logs * Fix analysis
37 lines
785 B
Groovy
37 lines
785 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.8.22'
|
|
ext.kotlin_coroutines_version = '1.7.1'
|
|
ext.work_version = '2.9.0'
|
|
ext.concurrent_version = '1.1.0'
|
|
ext.guava_version = '33.0.0-android'
|
|
ext.glide_version = '4.14.2'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = '../build'
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
}
|
|
subprojects {
|
|
project.evaluationDependsOn(':app')
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.buildDir
|
|
}
|