Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 1.87 KB

README.md

File metadata and controls

62 lines (40 loc) · 1.87 KB

Push Notifications Android

Build Status Twitter

This is the Android SDK for the Pusher Beams service.

The SDK is written in Kotlin, but aimed to be as Java-friendly as possible

Installation

Update your project level gradle config

Add the Google Services classpath to the dependencies section of your project-level build.gradle:

buildscript {
    ...

    dependencies {
        // Add this line
        classpath 'com.google.gms:google-services:4.2.0'
    }
}

Update your app level gradle config

dependencies {
    ...

    // Add these lines
    implementation 'com.google.firebase:firebase-messaging:22.0.0'
    implementation 'com.pusher:push-notifications-android:1.10.0'
}

// Add this line to the end of the file
apply plugin: 'com.google.gms.google-services'

Release Process

Available for Pusher folks only: Search on the manual for Beams SDK Release Process

Documentation

You can find our up-to-date documentation in here.

Communication

  • Found a bug? Please open an issue.
  • Have a feature request. Please open an issue.
  • If you want to contribute, please submit a pull request (preferably with some tests).

Credits

Pusher Beams is owned and maintained by Pusher.

License

Pusher Beams is released under the MIT license. See LICENSE for details.