Copy Task
task copyMethod {
doLast {
copy {
from 'app/build/outputs/logs/manifest-merger-debug-report.txt'
into 'app/build/'
include 'manifest-merger-debug-report.txt'
}
}
}
终端执行
./gradlew copyMethod
Gradle中执行命令
task callCommand (type:Exec){
commandLine "python", "hello.py"
}