File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
newarch/java/com/ReactNativeBlobUtil
oldarch/java/com/ReactNativeBlobUtil Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,17 @@ public ReactNativeBlobUtil(ReactApplicationContext reactContext) {
26
26
delegate = new ReactNativeBlobUtilImpl (reactContext );
27
27
}
28
28
29
+ // Required for rn built in EventEmitter Calls.
30
+ @ ReactMethod
31
+ public void addListener (String eventName ) {
32
+
33
+ }
34
+
35
+ @ ReactMethod
36
+ public void removeListeners (Integer count ) {
37
+
38
+ }
39
+
29
40
@ Override
30
41
protected Map <String , Object > getTypedExportedConstants () {
31
42
Map <String , Object > res = new HashMap <>();
Original file line number Diff line number Diff line change @@ -27,6 +27,17 @@ public ReactNativeBlobUtil(ReactApplicationContext reactContext) {
27
27
delegate = new ReactNativeBlobUtilImpl (reactContext );
28
28
}
29
29
30
+ // Required for rn built in EventEmitter Calls.
31
+ @ ReactMethod
32
+ public void addListener (String eventName ) {
33
+
34
+ }
35
+
36
+ @ ReactMethod
37
+ public void removeListeners (Integer count ) {
38
+
39
+ }
40
+
30
41
@ NonNull
31
42
@ Override
32
43
public String getName () {
You can’t perform that action at this time.
0 commit comments