mirror of
https://github.com/element-hq/element-android
synced 2024-11-23 18:05:36 +03:00
fix build cache misses
- forcing the stem string template generator to be cachable, without this the templates are regenerated causing the vector module to recompile its sources (our slowest task!)
This commit is contained in:
parent
b05d52bb6d
commit
bbdac9d1ba
1 changed files with 4 additions and 0 deletions
|
@ -20,3 +20,7 @@ android {
|
|||
jvmTarget = "11"
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType( com.likethesalad.android.templates.common.tasks.BaseTask) {
|
||||
it.outputs.cacheIf { true }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue