-
Notifications
You must be signed in to change notification settings - Fork 0
Integration Guide
-
Download Traceratops app from the Play Store. You can scan the QR code below.

-
Set up the trust agent by following these steps.
NOTE: You can skip this step if you just want to try out the SDK. However, if you are planning to launch your app to production, it is strongly recommended that you complete this step. -
Now include the SDK in your app. To do that, include the following dependency in your app's build.gradle:
compile 'com.bubblegum.traceratops:traceratops-core:0.2.0' -
Add the following code in your app's Application class'
onCreate()method to set up the SDK:Traceratops.setup(this) .handleCrashes(true) .connect();
If you have skipped the trust agent setup, add
.withTrustMode(TrustMode.TRUST_MODE_OVERRIDE)to the above code. To find out more about trust agents and TrustModes, click here. -
Use
com.bubblegum.traceratops.sdk.client.Logclass to record logs. Optionally, you can replace all instances ofandroid.util.Logimport statements with this one.
Got more questions or suggestions?
Email us at bubblegumdevs@gmail.com or create a new issue on our Issue tracker