Files
super-app/android/app/exec.gradle
2024-11-05 11:37:24 +00:00

34 lines
726 B
Groovy

tasks.register('cleanNavi', Exec) {
group = 'Build'
description = 'Cleans the project'
doFirst {
println("Configuring CleanNavi")
}
workingDir = rootProject.projectDir
executable = './gradlew'
args = ['clean', '--no-configuration-cache']
doLast {
println("CleanNavi execution completed")
}
}
tasks.register('buildNavi', Exec) {
group = 'Build'
description = 'Assembles and installs the QaDebug build'
doFirst {
println("Configuring BuildNavi")
}
workingDir = rootProject.projectDir
executable = './gradlew'
args = [':app:assembleQaDebug', 'app:installQaDebug']
doLast {
println("BuildNavi execution completed")
}
}