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:
Adam Brown 2022-09-16 14:57:11 +01:00
parent b05d52bb6d
commit bbdac9d1ba

View file

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