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
package/android/build.gradle
CHANGED
|
@@ -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
|
}
|