https://github.com/rudderlabs/rudder-integration-bugsnag-android
RudderStack's Native SDK integration support for Bugsnag.
https://github.com/rudderlabs/rudder-integration-bugsnag-android
android bugsnag rudderstack
Last synced: 11 months ago
JSON representation
RudderStack's Native SDK integration support for Bugsnag.
- Host: GitHub
- URL: https://github.com/rudderlabs/rudder-integration-bugsnag-android
- Owner: rudderlabs
- License: other
- Created: 2020-03-31T09:25:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T09:19:27.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T18:49:59.355Z (11 months ago)
- Topics: android, bugsnag, rudderstack
- Language: Kotlin
- Homepage: https://www.rudderstack.com
- Size: 188 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# What is RudderStack?
[RudderStack](https://rudderstack.com/) is a **customer data pipeline** tool for collecting, routing and processing data from your websites, apps, cloud tools, and data warehouse.
More information on RudderStack can be found [here](https://github.com/rudderlabs/rudder-server).
## Integrating Bugsnag with RudderStack's Android SDK
1. Add [Bugsnag](https://www.bugsnag.com) as a destination in the [Dashboard](https://app.rudderstack.com/) and define `apiKey`.
2. Add these lines to your ```app/build.gradle```
```
repositories {
maven { url "https://dl.bintray.com/rudderstack/rudderstack" }
}
```
3. Add the dependency under ```dependencies```
```
// Rudder core sdk and bugsnag extension
implementation 'com.rudderstack.android.sdk:core:1.0.1'
implementation 'com.rudderstack.android.integration:bugsnag:0.1.0-beta.1'
// bugsnag core sdk
implementation 'com.bugsnag:bugsnag-android:4.22.3'
// gson
implementation 'com.google.code.gson:gson:2.8.6'
```
## Initialize ```RudderClient```
```
val rudderClient: RudderClient = RudderClient.getInstance(
this,
,
RudderConfig.Builder()
.withDataPlaneUrl()
.withFactory(BugSnagIntegrationFactory.FACTORY)
.build()
)
```
## Send Events
Follow the steps from the [RudderStack Android SDK](https://github.com/rudderlabs/rudder-sdk-android).
## Contact Us
If you come across any issues while configuring or using this integration, please feel free to start a conversation on our [Slack](https://resources.rudderstack.com/join-rudderstack-slack) channel. We will be happy to help you.