소스 검색

fixed html-copy gradle file location (changed when we moved to a temp private npm package)

Artal Druk 8 년 전
부모
커밋
de711eda0e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      example/android/app/build.gradle

+ 2
- 2
example/android/app/build.gradle 파일 보기

@@ -140,6 +140,6 @@ task copyDownloadableDepsToLibs(type: Copy) {
140 140
 }
141 141
 
142 142
 project.afterEvaluate {
143
-    apply from: '../../node_modules/react-native-ZSSRichTextEditor/htmlCopy.gradle';
144
-    copyEditorHtmlToAppAssets(file('../../node_modules/react-native-ZSSRichTextEditor'))
143
+    apply from: '../../node_modules/react-native-temp-rich-text-editor/htmlCopy.gradle';
144
+    copyEditorHtmlToAppAssets(file('../../node_modules/react-native-temp-rich-text-editor'))
145 145
 }