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 03309e4 commit abec517Copy full SHA for abec517
android/src/main/java/com/instabug/flutter/modules/InstabugApi.java
@@ -358,6 +358,12 @@ public void reportScreenChange(@NonNull String screenName) {
358
if (method != null) {
359
method.invoke(null, null, screenName);
360
}
361
+ Method reportView = Reflection.getMethod(Class.forName("com.instabug.library.Instabug"), "reportCurrentViewChange",
362
+ String.class);
363
+
364
+ if (reportView != null) {
365
+ reportView.invoke(null, screenName);
366
+ }
367
} catch (Exception e) {
368
e.printStackTrace();
369
0 commit comments