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.
enable
disable
1 parent a316778 commit e5233dfCopy full SHA for e5233df
index.js
@@ -708,6 +708,26 @@ module.exports = {
708
Instabug.setPromptOptionsEnabled(chat, bug, feedback);
709
},
710
711
+ /**
712
+ * Enables all Instabug functionality
713
+ * It works on android only
714
+ */
715
+ enable: function () {
716
+ if (Platform.OS === 'android') {
717
+ Instabug.enable();
718
+ }
719
+ },
720
+
721
722
+ * Disables all Instabug functionality
723
724
725
+ disable: function () {
726
727
+ Instabug.disable();
728
729
730
731
/**
732
* The event used to invoke the feedback form
733
* @readonly
0 commit comments