♻️ Android use background info too

This commit is contained in:
2024-12-21 13:03:07 +08:00
parent 73468c5c6d
commit 435b730f3b
8 changed files with 95 additions and 96 deletions

View File

@ -3,6 +3,15 @@ allprojects {
google()
mavenCentral()
}
configurations.all {
resolutionStrategy {
eachDependency {
if ((requested.group == "androidx.work") && (requested.name.startsWith("work-runtime"))) {
useVersion("2.9.1")
}
}
}
}
}
rootProject.buildDir = "../build"