所以我有一个准备好由gradle运行的shell脚本。问题是我不知道如何运行shell脚本..我希望在构建应用程序时运行脚本。这是第一次搞乱构建系统..我看了创建一个任务,但似乎没有从app / build.gradle文件中调用:
task runShellScript(type:Exec) {
doLast {
println 'Shell Script finished'
}
executable './shell-script'
答案 0 :(得分:1)
在build.gradle
中创建任务:
task task_name(type: Exec) {
commandLine './shell_script_name.sh'
}
以:
运行gradle task_name