Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.74 KB

README.md

File metadata and controls

54 lines (36 loc) · 1.74 KB

Eventflit Push Notifications Android

Build Status Twitter

This is the Android SDK for the Push Notifications 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:3.1.0'
    }
}

Update your app level gradle config

dependencies {
    ...

    // Add these lines
    implementation 'com.google.firebase:firebase-messaging:11.8.0'
    implementation 'com.eventflit:push-notifications-android:0.1.0'
}

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

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

License

Push Notifications is released under the MIT license. See LICENSE for details.