Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 45 Next »

Last Updated: Tuesday, April 3, 2018




This is an Android SDK for handling push integration with the Vibes Platform APIs.

The Android repository is available on the Vibes GitHub Repository.

Installing the Android SDK

  1. Click Add Firebase and follow the instructions on the Firebase website. This will include setting up the Google Services plugin and downloading the google-services.json into your App folder.

  2. Click Add Firebase Cloud Messaging and follow the instructions. This will include adding two services to your app to handle app token refresh and incoming push notifications.

  3. Add the Vibes SDK by doing the following:

    1. Add the following to your project-level build.gradle file:

      maven {
         url "https://github.com/vibes/android-sdk-repository/releases"
      }
    2. Add the following to your app-level build.gradle file:

      dependencies {
         // other dependencies here
         compile "com.vibes.vibes:vibes:1.+"
      }
    3. Sync your project in Android Studio.


  • No labels