Merge pull request #7157 from vector-im/feature/adm/cache-misses

Fix build cache misses
This commit is contained in:
Adam Brown 2022-09-16 17:19:49 +01:00 committed by GitHub
commit 9a298a6e3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

1
changelog.d/7157.misc Normal file
View File

@ -0,0 +1 @@
Fixing build cache misses when compiling the vector module

View File

@ -20,3 +20,7 @@ android {
jvmTarget = "11"
}
}
tasks.withType( com.likethesalad.android.templates.common.tasks.BaseTask) {
it.outputs.cacheIf { true }
}