https://github.com/rudderlabs/rudder-integration-appcenter-android
RudderStack's Native Android Implementation for Visual Studio App Center.
https://github.com/rudderlabs/rudder-integration-appcenter-android
appcenter rudder-android-sdk rudderstack
Last synced: 8 months ago
JSON representation
RudderStack's Native Android Implementation for Visual Studio App Center.
- Host: GitHub
- URL: https://github.com/rudderlabs/rudder-integration-appcenter-android
- Owner: rudderlabs
- License: other
- Created: 2021-01-12T17:51:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T11:21:57.000Z (about 2 years ago)
- Last Synced: 2025-08-18T06:53:19.560Z (8 months ago)
- Topics: appcenter, rudder-android-sdk, rudderstack
- Language: Kotlin
- Homepage: https://rudderstack.com/
- Size: 377 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.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 Visual Studio App Center for RudderStack's Android SDK
1. Add [Appcenter](https://appcenter.ms) as a destination in the [RudderStack dashboard](https://app.rudderstack.com/) and define the app secret key.
2. Add the following `dependencies` to your `app/build.gradle` file as shown:
```groovy
implementation 'com.rudderstack.android.sdk:core:1.+'
implementation 'com.rudderstack.android.integration:appcenter:1.0.1'
implementation 'com.google.code.gson:gson:2.8.6'
// Appcenter dependency
implementation "com.microsoft.appcenter:appcenter-analytics:4.1.0"
```
3. Also add the below `repositories` tag in your `app/build.gradle` as shown:
```groovy
repositories {
maven {
url "https://dl.bintray.com/rudderstack/rudderstack"
}
}
```
4. Make sure that the `minSdkVersion` in your `app/build.gradle` is at least `21`:
```groovy
defaultConfig {
minSdkVersion 21
}
```
5. Finally change the initialization of your `RudderClient` in your `Application` class:
```groovy
val rudderClient = RudderClient.getInstance(
this,
,
RudderConfig.Builder()
.withDataPlaneUrl()
.withFactory(AppcenterIntegrationFactory.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.