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 d402181 commit f32c25bCopy full SHA for f32c25b
htmlCopy.gradle
@@ -1,12 +1,13 @@
1
ext {
2
copyEditorHtmlToAppAssets = { dir ->
3
- def fromF = new File(dir, '/src/assets/editor.html');
+ def fromF = new File(dir, '/src/assets/');
4
def toF = new File(projectDir, '/src/main/assets/');
5
- println ('Copying ZSSRichTextEditor html asset file from ' + fromF.toString() + ' to ' + toF.toString());
+ println ('Copying ZSSRichTextEditor assets from ' + fromF.toString() + ' to ' + toF.toString());
6
7
copy {
8
from fromF
9
into toF
10
+ include '*/*.*'
11
}
12
13
0 commit comments