We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47e21f commit 5e4195bCopy full SHA for 5e4195b
android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java
@@ -1012,7 +1012,13 @@ public void setIntroMessageEnabled(boolean enabled) {
1012
e.printStackTrace();
1013
}
1014
1015
-
+ private void sendEvent(ReactContext reactContext,
1016
+ String eventName,
1017
+ @Nullable WritableMap params) {
1018
+ reactContext
1019
+ .getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class)
1020
+ .emit(eventName, params);
1021
+ }
1022
1023
/**
1024
* Sets the runnable that gets executed just before showing any valid survey<br/>
0 commit comments