react-native-zip-archive 6.0.4 → 6.0.7

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.
package/README.md CHANGED
@@ -27,7 +27,7 @@ For iOS, run the command below in you app's root folder once the package has bee
27
27
  cd ./ios && pod install
28
28
  ````
29
29
 
30
- For Andriod, it's ready to go.
30
+ For Android, it's ready to go.
31
31
 
32
32
 
33
33
  ## Usage
@@ -1,7 +1,7 @@
1
1
  buildscript {
2
2
  repositories {
3
- jcenter()
4
3
  google()
4
+ mavenCentral()
5
5
  }
6
6
 
7
7
  dependencies {
@@ -510,4 +510,14 @@ public class RNZipArchiveModule extends ReactContextBaseJavaModule {
510
510
  return sw.toString();
511
511
  }
512
512
 
513
+ @ReactMethod
514
+ public void addListener(String eventName) {
515
+ // Keep: Required for RN built in Event Emitter Calls.
516
+ }
517
+
518
+ @ReactMethod
519
+ public void removeListeners(Integer count) {
520
+ // Keep: Required for RN built in Event Emitter Calls.
521
+ }
522
+
513
523
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-zip-archive",
3
- "version": "6.0.4",
3
+ "version": "6.0.7",
4
4
  "description": "A little wrapper on ZipArchive for react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {