No Description

htmlCopy.gradle 319B

12345678910111213
  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. }