我已将以下任务及其执行计划添加到build.gradle
:
task copyDbFile (type: Copy)
copyDbFile {
description = 'Copies the relevant db file to assets folder'
from 'store'
into 'assets'
include '**/Test.txt'
}
preBuild {}.dependsOn copyDbFile
preBuild {}.mustRunAfter copyDbFile
我没有收到任何错误,但Test.txt
文件未被复制到assets
文件夹。
我看到在gradle console
:
:clean :app:clean :app:copyDbFile UP-TO-DATE :app:preBuild UP-TO-DATE :app:preDebugBuild UP-TO-DATE :app:checkDebugManifest :app:preReleaseBuild UP-TO-DATE ... ... ...
但是文件没有被复制。我没有得到任何错误。 从来没有写过gradle任务,我怀疑有一些语法错误或者我错过了什么。但由于我没有看到任何错误,我无法弄明白。
您认为上述内容有什么问题,因为文件没有被复制到目标文件夹?
assets
和store
文件夹位于app
目录下的同一级别。
答案 0 :(得分:0)
感谢RaGe的提示帮助我如何调试并帮助我弄清楚实际问题只是路径错误而且没有找到任何源文件它正在跳过任务。
我按如下方式更改了任务中的路径,并且工作正常:
task copyDbFile (type: Copy)
copyDbFile {
description = 'Copies the relevant db file to assets folder'
from 'src/main/store'
into 'src/main/assets'
include '**/*.txt'
}