您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

htmlCopy.gradle 319B

123456789101112
  1. ext {
  2. copyEditorHtmlToAppAssets = { dir ->
  3. def fromF = new File(dir, '/src/editor.html');
  4. def toF = new File(projectDir, '/src/main/assets/');
  5. println ('Copying ZSSRichTextEditor html asset file from ' + fromF.toString() + ' to ' + toF.toString());
  6. copy {
  7. from fromF
  8. into toF
  9. }
  10. }
  11. }