We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a8a34 commit f34dfcfCopy full SHA for f34dfcf
PluginCore/host.gradle
@@ -29,9 +29,11 @@ afterEvaluate {
29
def mergeTask = tasks.getByName(mergeTaskName)
30
//第2件事
31
mergeTask.doLast {
32
- println '编译宿主资源时插入public.xml,用来控制宿主资源id分组'
+ println '编译宿主资源时插入' + buildscript.sourceFile.getParentFile().absolutePath
33
+ + '/public.xml 到' + mergeTask.outputDir.absolutePath + "/values/"
34
+ ', 用来控制宿主资源id分组'
35
copy {
- from(project.getProjectDir()) {
36
+ from(buildscript.sourceFile.getParentFile()) {
37
include 'public.xml'
38
}
39
into(mergeTask.outputDir.absolutePath + "/values/")
PluginMain/public.xml renamed to PluginCore/public.xml
0 commit comments