Customizations
SDK
Initialize the SDK
Import the BugBattle SDK by adding the following import inside your index.js
.
Add the initialization function within your index.js
after AppRegistry.registerComponent(appName, () => App);
.
Your API key can be found in the project settings within BugBattle. Possible values for the activation method are BugBattle.NONE
and BugBattle.SHAKE
.
BugBattle.NONE
: No automatic activation.
BugBattle.SHAKE
: Activation on device shake.
Manually initiate the bug reporting flow
Some situations require more control about the activation of the bug reporting flow. By calling the startBugReporting
method, you can simply start the flow manually. In order to also prevent the shake gesture, just initialize the Bugbattle SDK with the activation method BugBattle.NONE
.
Customer email address
Sets the customer's email address.
Attach custom data
Sometimes you need to attach custom data to bug reports in order to solve them more quickly. Any simple dictionary can be attached.
Privacy policy
Enable privacy policy check
Enables the privacy policy check within the bug reporting flow. With this option set to true, users must accept the privacy policy in order to send a bug report.
Privacy policy url
Sets the privacy policy url. This is especially handy if you have any special requirements regarding the privacy policy. The default url is set to the Bugbattle privacy policy.
Self-Hosted
API url
Sets the API url to your internal Bugbattle server. Please make sure that the server is reachable within the network.