SDK 8.1 Migration Guide
The main objective of this release is to give you more control over the Instabug products you use.
For example, let's say that from the Prompt Options menu, you want your app users to be able to "Report a problem" and "Suggest an improvement", but not "Ask a question"¹, but you still want to be able to have conversations with users who send you bugs and feedback.
Starting from SDK V8.1, you can achieve this by keeping IBGBugReporting
enabled, disabling a new class for IBGChats
, and enabling a new class for IBGReplies
.
To provide this level of control, we introduced new classes, moved some APIs, renamed others and deprecated old versions. These changes affect users of all Instabug products across all OS platforms.
This migration guide explains the details related to each change, how to drop the old APIs, and how to adopt the new ones.
¹ "Ask a question" is the new default copy in the Prompt Options menu, replacing "Talk to us"
Summary of Changes
- Introduced new classes:
IBGChats
IBGReplies
- Added new APIs and properties to the following classes:
IBGBugReporting
Instabug
- Moved some APIs from
Instabug
toIBGReplies
. - Renamed some APIs & properties.
- Deprecated some APIs in
IBGBugReporting
.
In the following sections, you can find detailed changes related to each class.
Invoke
Previous Usage
IBGBugReporting.Invoke();
BugReporting.Invoke();
New Usage
Instabug.Show();
InvokeWithInvocationMode
Previous Usage
// Compose a new bug report
IBGBugReporting.InvokeWithInvocationMode(IBGInvocationMode.NewBug, IBGBugReportingInvocationOption.EmailFieldHidden);
// Compose new feedback
IBGBugReporting.InvokeWithInvocationMode(IBGInvocationMode.NewFeedback, IBGBugReportingInvocationOption.EmailFieldHidden);
// Compose new chat
IBGBugReporting.InvokeWithInvocationMode(IBGInvocationMode.NewChat);
// Show chat history
IBGBugReporting.InvokeWithInvocationMode(IBGInvocationMode.ChatsList);
New Usage
// Compose a new bug report
IBGBugReporting.ShowWithReportType(IBGBugReportingReportType.Bug, IBGBugReportingOption.EmailFieldHidden);
// Compose new feedback
IBGBugReporting.ShowWithReportType(IBGBugReportingReportType.Feedback, IBGBugReportingOption.EmailFieldHidden);
// Compose new chat
IBGChats.Show();
// Show chat history
IBGReplies.Show();
hasChats
New Usage
Check if your user has a chat history with you
The
show
API inside the Replies class opens the list of messages in your app only if the user already has a chat history. Otherwise, this API has no effect. If you manually show the replies page, we recommend using the new APIhasChats
.
Use the API below to check whether the user has a chat history with your team, then show them the replies page or not.
IBGReplies.HasChats();
InvocationOptions or SetInvocationOptions
Previous Usage
IBGBugReporting.InvocationOptions = IBGBugReportingInvocationOption.EmailFieldOptional;
BugReporting.SetInvocationOptions(InvocationOption.EmailFieldOptional);
New Usage
IBGBugReporting.BugReportingOptions = IBGBugReportingOption.EmailFieldOptional;
PromptOptions or SetPromptOptionsEnabled
Previous Usage
IBGBugReporting.PromptOptions = IBGPromptOption.Bug | IBGPromptOption.Chat;
BugReporting.SetPromptOptionsEnabled(PromptOption.Bug, PromptOption.Chat);
New Usage
New Prompt Options Experience
In older versions of the SDK, the "Talk to us" option would open a new chat if the user did not have a chat history with you. If the user did have a chat history, selecting this option would open the list of conversations.
Starting from SDK V8.1, the default copy for this button is now "Ask a question", and selecting this option will now always open a new chat. If the user has a chat history with you, a new button appears in the top-right of the modal that opens the list of replies. "Ask a question" and the button to open the list of replies can be enabled and disabled independently of one another.

The default Prompt Options menu starting from Instabug SDK V8.1 and above.
// Disable Bug Reporting & Feedback. If disabled, both "Report a problem" and "Suggest an improvement" are removed from the Prompt Options menu, and manually showing Bug Reporting & Feedback has no effect.
IBGBugReporting.Enabled = true;
// Disable In-App Chat. If disabled, "Ask a question" (new default copy instead of "Talk to us") is removed from the Prompt Options menu, the compose button in the replies list is removed, and manually showing the compose view of In-App Chat has no effect.
IBGChats.Enabled = true;
// Disable Replies. If disabled, the button to view the replies list is removed from the Prompt Options menu, in-app notifications are disabled, and manually showing the replies list has no effect.
IBGReplies.Enabled = true;
promptOptionsEnabledReportTypes
New Usage
If you want to enable or disable the "Report a problem" (submit a bug report) and/or "Suggest an improvement" (submit feedback) Prompt Options independently, you can use the promptOptionsEnabledReportTypes
property as displayed below.
IBGBugReporting.SetPromptOptionsEnabledReportTypes(IBGBugReportingReportType.Bug)
BugReporting.SetReportTypes(BugReporting.ReportType.Bug)
DidRecieveReplyHandler or SetOnNewReplyReceivedCallback
Previous Usage
Instabug.DidRecieveReplyHandler;
Instabug.setOnNewReplyRecievedCallback(new Runnable() {
//Your code goes here.
});
New Usage
Replies.DidReceiveReplyHandler;
Replies.SetOnNewReplyReceivedCallback(new Runnable() {
//Your code goes here.
});
ReplyNotificationsEnabled or setReplyNotificationEnabled
Previous Usage
Instabug.ReplyNotificationsEnabled;
Instabug.setReplyNotificationEnabled(false);
New Usage
Replies.InAppNotificationsEnabled;
Instabug.setInAppNotificationEnabled(false);
UnreadMessagesCount
Previous Usage
Instabug.UnreadMessagesCount;
Instabug.getUnreadMessagesCount();
New Usage
Replies.UnreadRepliesCount;
Replies.getUnreadRepliesCount();
setInAppReplyNotificationSound
Previous Usage
Instabug.setInAppReplyNotificationSound(false);
New Usage
Replies.setInAppNotificationSound(false);
IBGSurveys or setSurveysState
Previous Usage
IBGSurveys.Enabled = false;
setSurveysState(Feature.State.ENABLED);
New Usage
Surveys.Enabled = false;
Surveys.setState(Feature.State.ENABLED);
SetString
Previous Usage
//iOS Only
Instabug.SetString("Report a bug", IBGString.ReportBug);
//No changes on Android
New Usage
//iOS Only
Instabug.SetValue("Report a bug", IBGString.ReportBug);
//No changes on Android
Updated over 1 year ago