GithubHelp home page GithubHelp logo

isabella232 / mailchimp-sdk-android Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mailchimp/mailchimp-sdk-android

0.0 0.0 0.0 273 KB

Home Page: https://mailchimp.com/developer/guides/mobile-sdk/

License: Other

Ruby 3.11% Kotlin 95.82% Java 1.06%

mailchimp-sdk-android's Introduction

Mailchimp Developer

Mailchimp Android SDK

Create and update your Mailchimp contacts from your Android app. The Mailchimp SDK allows you to,

  • Add new users straight to your audience
  • Update your contacts based on user action
  • Add relevant tags to contacts
  • Set or update merge fields

Getting Started

Requirements

  • Android API Level 21 (5.0) and above

Retrieving SDK Key

See the Mailchimp SDK documentation for details on retrieving a key.

Adding The Mailchimp SDK to your Project

First, add https://jitpack.io to your list of maven repositories if it's not already present. Ex. This is an list of Gradle repositories that contains jitpack

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' } // <-- New repository
}

Next add the Mailchimp SDK to your list of dependencies. Below is a gradle example

implementation 'com.github.mailchimp:Mailchimp-SDK-Android:1.0.0'

Initializing the SDK

The first step is to create the configuration object. The configuration object has three different fields.

  • SDK Key (Required): The SDK key gives you access to your audience. More details can be found in the previous section.
  • Debug Mode (Optional): Debug Mode enables additional debug only functionality such as extra logging. This is off by default.
  • Auto Tagging (Optional): Auto Tagging automatically tags contacts with information such as Device Type and Platform. This is on by default.

Below is an example of a potential configuration.

    val sdkKey = "12345678901234567890123456789012-us12" //Example SDK Key
    val isDebugBuild = BuildConfig.DEBUG
    val configuration = MailchimpSdkConfiguration.Builder(context, sdkKey)
        .isDebugModeEnabled(isDebugBuild)
        .isAutoTaggingEnabled(true)
        .build()

Once you have the configuration object setup, simply call the initialize method.

    val mailchimpSdk = Mailchimp.initialize(configuration)

This initialize the SDK and returns the new shared instance. It is recommended you initialize on app start. Subsequently the Shared Instance can be accessed by calling Mailchimp.sharedInstance().

Usage

Adding A Contact

To add a contact to your Mailchimp audience, first create the Contact object using the Contact Builder. Once created pass the user in to the createOrUpdateUser method. This will add the contact to your Mailchimp audience. If the contact already exists, their information will be updated with the values that were passed in.

    val newContact = Contact.Builder("<insert email here>")
           .setMergeField("FNAME", "Example")
           .setMergeField("LNAME", "User")
           .setContactStatus(ContactStatus.SUBSCRIBED)
           .addTag("Power User")
           .build()
    val sdk = Mailchimp.sharedInstance()
    sdk.createOrUpdateContact(newContact)

Updating a Contact

You may update a contact by using the same createOrUpdateContact() method described in the Adding a Contact section.

In addition to updating a whole contact, we provided a number of methods to update a single field on a contact. These will be executed as a separate job. So if you wish to update multiple fields at once, we suggest using the createOrUpdateContact() method.

Single field update methods include

  • addTag(): Adds a tag to the given user.
  • addTags(): Adds multiple tags to the given user.
  • removeTag(): Removes a tag from the given user.
  • removeTags(): Removes multiple tags from the given user.
  • setMergeField(): Sets or updates the merge field for a given user.
  • setMarketingPermission(): Sets the status of a marketing permission for a given user.

Job Status and Work Manager

The Mailchimp SDK uses Google's Work Manager to manage retry logic and job execution order. This means that all operations guaranteed to execute regardless of network status and App Restart. In addition the order of execution is maintained so that multiple calls will execute in the correct order.

For most use cases a fire and forget approach will be sufficient. However if needed, you can poll the status of jobs using the getStatusById() and getStatusByIdLiveData() methods.

getStatusById() will return the current status of a job.

val uuid = sdk.addTag("[email protected]", "ExampleTag")
val status = sdk.getStatusById(uuid)
//...
if (status == WorkStatus.FINISHED) {
    Log.i("Mailchimp SDK", "Tag Was Added")
}

getStatusByIdLiveData() will return a LiveData that may be used to monitor the state of a job.

val uuid = sdk.addTag("[email protected]", "ExampleTag")
val statusLiveData = sdk.getStatusByIdLiveData(uuid)
statusLiveData.observe(
            this
            Observer {
                Toast.makeText(this, "Current Job Status: $it", Toast.LENGTH_SHORT).show()
            })

Contact Schema

Email

The Email Address is used as the unique identifier for each contact in an audience. An email address will be required for every interaction with the SDK.

Tags

Using the SDK, users can have tags applied or removed to their contact information. Each tag is identified using a String. If tag has not been previously used on your account, it will be created.

Autotagging

If autotagging is enabled in the MailchimpSdkConfiguration, all created or updated contacts will be automatically tagged with Android and either Phone or Tablet.

Merge Fields

Merge fields are a set of key value pairs that can be set on each contact. They can be customized for each audience. Common examples of merge fields would be first name, last name, and phone number. The value of a merge field can be set and updated from the SDK. Merge fields are keyed off of a capitalized string. The Key does not include vertical bars on either end (ex. FNAME and not |FNAME|).

  • Merge fields can be located on audience settings page on the mailchimp website and are also listed out after sdk-key creation.
  • While Merge Fields can be marked as required on the audience settings, those requirements will not be enforced when using the Mailchimp SDK.

String Merge Fields

The majority of merge field types are represented as a string. This includes Text, Number, Radio Buttons, Drop Downs, Dates, Birthday, Phone Numbers, and Websites.

Address Merge Fields

Merge Fields of type address are not represented as a string and instead receive a custom object that follows the builder pattern. Addresses have three required fields, Address Line One, City, and Zip. In addition there are three optional fields, Address Line Two, State, and Country. Below is an example of an Address object.

    val address = Address.Builder("404 Main St.", "Atlanta", "30308")
            .setAddressLineTwo("apt. 101")
            .setState("Georgia")
            .setCountry(Country.USA)
            .build()

Contact Status

The Contact Status represents what type of communication the user has consented to. This can either be Subscribed (will receive general marketing campaigns) or Transactional (will only receive transactional emails). This value can only be set when the contact is created. If this is set at any other time, the new value will be ignored. By default all users will be marked as transactional if this value is not set at creation.

Marketing Permissions

GDPR compliant audiences require users to consent individually to Email, Direct Mail, and Customized Online Advertising. The Mailchimp SDK supports updating these permissions by supplying the Audience specific keys to the contact at time of creation or updating. You may mark permissions as granted or denied. Simply setting these permissions will not make your audience GDPR compliant. See the Mailchimp GDPR Tutorial for a more complete description of Marketing Permissions and how to use them.

    val emailPermissionKey = "1234567890" // Example Key
    val mailPermissionKey = "2345678901" // Example Key
    val advertisingPermissionKey = "3456789012"
    val newContact = Contact.Builder("[email protected]")
           .setMarketingPermission(emailPermissionKey, true)
           .setMarketingPermission(mailPermissionKey, true)
           .setMarketingPermission(advertisingPermissionKey, true)
           .build()
    val sdk = Mailchimp.sharedInstance()
    sdk.createOrUpdateContact(newContact)

Retrieving Marketing Permission Keys

See the Mailchimp SDK documentation for details on setting up marketing permissions.

Collecting contact events

Adding an event

To add an event associated with a contact, pass the email, event name, and properties (optional) into the addContactEvent method. This will add the event to the specified contact. Unlike adding or updating contact information, event requests will excecute immediately and will not be reattempted if they fail.

    val mailchimpSdk = Mailchimp.sharedInstance()
    val eventProperties = mapOf("item_id" to "12894309543")
    mailchimpSdk.addContactEvent("[email protected]", "User Browsed Item", eventProperties)

Event Schema

Email

The Email Address is the unique identifier for each contact in an audience. An email address is required for every interaction with the SDK.

Name

Each event is identified using a String. The maximum length of an event name is 30 characters.

Properties

Any event can have properties associated with it. These properties have a String key and String value. Property names are limited to A-z and underscores. Properties are passed into the request as a Map<String, String>, the former being the name and the latter being the value.

Demo App

Autofilling Demo SDK Key (Optional)

On a Unix-like OS, in your home (~) folder, go into the .gradle folder and open or create a gradle.properties file. Add the following key-value pair to have your SDK Key for the demo app filled in automatically.

MAILCHIMP_SDK_DEMO_KEY=<YOUR_SDK_KEY>

Replacing <YOUR_SDK_KEY> with the SDK Key you wish to use.

FAQ

Do you have an iOS version?

Yes! You can find it here

mailchimp-sdk-android's People

Contributors

charlie-mcknight avatar jeremy-fox avatar joanne-song avatar josevila avatar michael-heard-mc avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.