@chaitrabhairappa/react-native-rich-text-editor 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -39,7 +39,7 @@ yarn add @chaitrabhairappa/react-native-rich-text-editor
39
39
  ### iOS
40
40
 
41
41
  ```bash
42
- cd ios && pod install
42
+ cd ios && bundle install && bundle exec pod install && cd ..
43
43
  ```
44
44
 
45
45
  ### Android
@@ -219,22 +219,6 @@ const toolbarOptions: ToolbarOption[] = ['bold', 'italic', 'underline', 'bullet'
219
219
  />;
220
220
  ```
221
221
 
222
- ## Android Setup
223
-
224
- Add the package to your `MainApplication.java` or `MainApplication.kt`:
225
-
226
- ```java
227
- // MainApplication.java
228
- import com.richtext.editor.RichTextEditorPackage;
229
-
230
- @Override
231
- protected List<ReactPackage> getPackages() {
232
- List<ReactPackage> packages = new PackageList(this).getPackages();
233
- packages.add(new RichTextEditorPackage());
234
- return packages;
235
- }
236
- ```
237
-
238
222
  ## License
239
223
 
240
224
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chaitrabhairappa/react-native-rich-text-editor",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A powerful native rich text editor for React Native with support for text formatting, lists, and more",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",