You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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