1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

make more tasks depend on zipRepoAssets

This commit is contained in:
leo60228 2023-09-07 18:54:54 -04:00 committed by Misa Elizabeth Kai
parent c84bc14122
commit e170d19e16

View file

@ -2,8 +2,7 @@ def buildAsLibrary = project.hasProperty('BUILD_AS_LIBRARY');
def buildAsApplication = !buildAsLibrary
if (buildAsApplication) {
apply plugin: 'com.android.application'
}
else {
} else {
apply plugin: 'com.android.library'
}
@ -97,7 +96,7 @@ project.android.applicationVariants.configureEach { variant ->
}
afterEvaluate {
[lintVitalReportRelease, lintVitalAnalyzeRelease].each { task ->
[lintReportDebug, lintAnalyzeDebug, lintReportRelease, lintAnalyzeRelease, lintVitalReportRelease, lintVitalAnalyzeRelease].each { task ->
task.dependsOn zipRepoAssetsTask
}
}