Giter Club home page Giter Club logo

mobile-messaging-sdk-android's Introduction

Mobile Messaging SDK for Android

Download License

Mobile Messaging SDK is designed and developed to easily enable push notification channel in your mobile application. In almost no time of implementation you get push notification in your application and access to the features of Infobip IP Messaging Platform. The document describes library integration steps. Additional information can be found in our wiki.

Requirements

  • Android Studio
  • API Level: 14 (Android 4.0 - Ice Cream Sandwich)

Quick start guide

This guide is designed to get you up and running with Mobile Messaging SDK integrated into your Android application.

  1. Prepare your Cloud Messaging credentials to get Sender ID and Server API Key.

  2. Prepare your Infobip account (https://portal.infobip.com/push/) to get your Application Code:

    1. Create new application on Infobip Push portal.
    2. Navigate to your Application where you will get the Application Code.
    3. Mark the "Available on Android" checkbox.
    4. Insert previously obtained GCM Server Key (Server API Key).
    CUP Settings
  3. Create new application in Android Studio

  4. Add dependencies to app/build.gradle

    dependencies {
        ...
        compile ('org.infobip.mobile.messaging.api:infobip-mobile-messaging-android-sdk:1.14.17@aar') {
            transitive = true;
        }
    }
  5. Add GCM Sender ID, obtained in step 1, and Infobip Application Code, obtained in step 2, to values/strings.xml resource file

    <resources>
        <string name="google_app_id">YOUR GCM SENDER</string>
        <string name="infobip_application_code">YOUR APPLICATION CODE</string>
        ...
    </resources>
  6. Add code to MainActivity#onCreate

    import android.os.Bundle;
    import android.support.v7.app.AppCompatActivity;
    import org.infobip.mobile.messaging.MobileMessaging;
     
    public class MainActivity extends AppCompatActivity {
     
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            
            ...
     
            new MobileMessaging.Builder(getApplication())
                            .build();
        }
         
        ...
    }

Notice

  1. All required manifest components are merged to application manifest automatically by manifest merger. Please include push-related components to manifest manually if manifest merger was disabled.
  2. MobileMessaging library has geofencing service disabled by default. In order to opt-in the service, follow this guide.
  3. Keep in mind that some proprietary android versions may restrict network traffic for your app. It may in turn affect delivery of push notifications.

Mobile Messaging APIs

Events

Library generates intents on the events as described in Events wiki.

Linking MSISDN

It is recommended that you link the GSM number (in MSISDN format). It will give an additional opportunity to target your application users and orchestrate your campaigns with OMNI Messaging service including SMS fallback feature.

UserData userData = new UserData();
userData.setMsisdn("385911234567");
MobileMessaging.getInstance(context).syncUserData(userData);

mobile-messaging-sdk-android's People

Contributors

kas-kad avatar mstipanov avatar riskpp avatar stanislavin avatar tjuric avatar

Watchers

 avatar  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.