You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create new instance in app onCreate method. new Instabug.Builder(this, "KEY").build();
Then call BugReporting.show(BugReporting.ReportType.BUG) (or Instabug.show()) from some fragment. (Both options are called from the main thread)
Expected Behavior
An Instabug bug report dialog will appear every time
Actual Behavior
The bug report dialog appears only in first app session, after installation (or clear app cache), but once, the app is destroyed by system or user, the dialog won't appear anymore in next sessions (yep, almost the same as for... )
and no matter how we try to call it, through .show() or shake.
Instabug integration code
new Instabug.Builder(this, 'KEY')
.setInvocationEvents(InstabugInvocationEvent.NONE/(SHAKE for debugging purposes))
.build();
ReproConfigurations config = new ReproConfigurations.Builder()
.setIssueMode(IssueType.All, ReproMode.EnableWithScreenshots).build();
Instabug.setReproConfigurations(config);
Instabug.setWelcomeMessageState(WelcomeMessage.State.DISABLED);
Instabug.onReportSubmitHandler(report -> {...})
SDK Version
12.5.1 and 12.6.0
Android Version
11, 13, 14
Device Model
Realme 6i, Galaxy S21, Galaxy S22
The text was updated successfully, but these errors were encountered:
Hello, @sigaretaa thank you so much for reaching out, We will need more info about your account so, Would you be able to reach out to our support team using contactus@instabug.com so that we can further investigate this issue?
Hello @Jafar-Al-Rashid 👋🏻
Thanks for reaching out, please reach out to our support team via contactus@instabug.com so we can get more info about your account and further investigate this issue 🙏🏻
Steps to Reproduce the Problem
create new instance in app onCreate method.
new Instabug.Builder(this, "KEY").build();
Then call
BugReporting.show(BugReporting.ReportType.BUG)
(orInstabug.show()
) from some fragment. (Both options are called from the main thread)Expected Behavior
An Instabug bug report dialog will appear every time
Actual Behavior
The bug report dialog appears only in first app session, after installation (or clear app cache), but once, the app is destroyed by system or user, the dialog won't appear anymore in next sessions (yep, almost the same as for... )
and no matter how we try to call it, through .show() or shake.
Instabug integration code
SDK Version
12.5.1 and 12.6.0
Android Version
11, 13, 14
Device Model
Realme 6i, Galaxy S21, Galaxy S22
The text was updated successfully, but these errors were encountered: