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.
start
1 parent 8310720 commit 5537df4Copy full SHA for 5537df4
android/src/main/java/com/instabug/reactlibrary/RNInstabugReactnativeModule.java
@@ -122,9 +122,15 @@ public void run() {
122
final ArrayList<String> keys = ArrayUtil.parseReadableArrayOfStrings(invocationEventValues);
123
final ArrayList<InstabugInvocationEvent> parsedInvocationEvents = ArgsRegistry.invocationEvents.getAll(keys);
124
125
+ setCurrentPlatform();
126
+ setBaseUrlForDeprecationLogs();
127
+
128
new Instabug.Builder(getCurrentActivity().getApplication(), token)
129
.setInvocationEvents(parsedInvocationEvents.toArray(new InstabugInvocationEvent[0]))
130
.build();
131
132
+ // Temporarily disabling APM hot launches
133
+ APM.setHotAppLaunchEnabled(false);
134
} catch (Exception e) {
135
e.printStackTrace();
136
}
0 commit comments