通过gradle运行shell脚本

时间:2015-12-03 23:35:57

标签: android shell gradle android-gradle

所以我有一个准备好由gradle运行的shell脚本。问题是我不知道如何运行shell脚本..我希望在构建应用程序时运行脚本。这是第一次搞乱构建系统..我看了创建一个任务,但似乎没有从app / build.gradle文件中调用:

task runShellScript(type:Exec) {
doLast {
    println 'Shell Script finished'
}
executable './shell-script'

1 个答案:

答案 0 :(得分:1)

build.gradle中创建任务:

task task_name(type: Exec) {
          commandLine './shell_script_name.sh'  
}

以:

运行
gradle task_name