Skip to content

RudderStack's Flutter Implementation for Visual Studio App Center.

License

Notifications You must be signed in to change notification settings

rudderlabs/rudder-integration-appcenter-flutter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is RudderStack?

RudderStack is a customer data pipeline tool for collecting, routing and processing data from your websites, apps, cloud tools, and data warehouse.

With RudderStack, you can build customer data pipelines that connect your whole customer data stack and then make them smarter by triggering enrichment and activation in customer tools based on analysis in your data warehouse. Its easy-to-use SDKs and event source integrations, Cloud Extract integrations, transformations, and expansive library of destination and warehouse integrations makes building customer data pipelines for both event streaming and cloud-to-warehouse ELT simple.

Try RudderStack Cloud Free - a no time limit, no credit card required, completely free tier of RudderStack Cloud. Click here to start building a smarter customer data pipeline today, with RudderStack Cloud Free.

Questions? Please join our Slack channel or read about us on Product Hunt.

Integrating AppCenter with the RudderStack Flutter SDK

  1. Add CleverTap as a destination in the RudderStack dashboard.

  2. Open pubspec.yaml and add rudder_integration_appcenter_flutter under dependencies section:

dependencies:
  rudder_integration_appcenter_flutter: ^1.0.0
  1. Navigate to your Application's root folder and install all the required dependencies with:
flutter pub get
  1. Import the module you added above and add it to your SDK initialization code as shown below:
import 'package:rudder_sdk_flutter/RudderClient.dart';
import 'package:rudder_sdk_flutter/RudderConfig.dart';
import 'package:rudder_integration_appcenter_flutter/Appcenter.dart';

RudderConfigBuilder builder = RudderConfigBuilder();
builder.withDataPlaneUrl(DATA_PLANE_URL);
builder.withTrackLifecycleEvents(true);
builder.withFactory(Appcenter());
RudderClient.getInstance(WRITE_KEY,
    config: builder.build());

{% hint style="info" %} Make sure the minSdkVersion of your build.gradle in the root of android directory is atleast 21 {% endhint %}

Sending Events

Follow the steps from our RudderStack Flutter SDK repo.

Contact Us

If you come across any issues while configuring or using this integration, please feel free to start a conversation on our Slack channel. We will be happy to help you.

About

RudderStack's Flutter Implementation for Visual Studio App Center.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published