Files
super-app/android/app/exec.gradle

34 lines
726 B
Groovy
Raw Normal View History

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