An open API service indexing awesome lists of open source software.

https://github.com/rudderlabs/rudder-integration-optimizely-android

RudderStack's Native SDK integration support for Optimizely.
https://github.com/rudderlabs/rudder-integration-optimizely-android

android optimizely rudderstack

Last synced: about 1 year ago
JSON representation

RudderStack's Native SDK integration support for Optimizely.

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 Optimizely with RudderStack's Android SDK

1. Add [Optimizely](https://www.optimizely.com/) as a destination in the [Dashboard](https://app.rudderstack.com/)

2. Add these lines to your ```app/build.gradle```
```
repositories {
maven { url "https://dl.bintray.com/rudderstack/rudderstack" }
}
```
3. Add the dependency under ```dependencies```
```
implementation 'com.rudderstack.android.sdk:core:1.0.2'
implementation 'com.rudderstack.android.integration:optimizely:1.0.0'
```

## Initialize ```RudderClient```

```
val rudderClient: RudderClient = RudderClient.getInstance(
this,
,
RudderConfig.Builder()
.withDataPlaneUrl()
.withFactory(OptimizelyIntegrationFactory.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.