SimpleGCM
Simple Google Cloud Messaging(GCM) integration library for Android.
Why
Sometimes we want to send notifications to our users to notify them about something. If we don't have a perfectly working example in our code library, we are always digging stackoverflow or etc. to see which permissions, classes, broadcast receivers, services, listeners that we need to implement our apps with google cloud messaging functionality. But sometimes, things get messy.
With this library we can easily integrate GCM to our application with simpliest steps.
Receiving notification is only thing we care about, right?
Library Features
- Receive GCM push messages.
- Get registrationId in background
Usage
Add dependency and plugin to project level build.gradle.
dependencies {
compile 'com.cuneytayyildiz:simplegcm:1.0'
}
apply plugin: 'com.google.gms.google-services'
Add classpath and repository to root level build.gradle.
dependencies {
classpath 'com.google.gms:google-services:2.+'
}
repositories {
mavenCentral()
}
-
In your
Application
class implement GcmListener interface with two methods:onMessage()
sendRegistrationIdToBackend()
-
In your
MainActivity
onCreate()
, callSimpleGcm.init(this);
If you want to access the registrationId
after the registration has finished, you can use SimpleGcm.isRegistered(Context context)
, SimpleGcm.getRegistrationId(Context context)
IMPORTANT STEP Download your google-services.json file and copy to app module. GCM will use this .json file to get senderID and other informations. ( Download it from here)
References
Licence
The MIT License (MIT) Copyright (c) 2016 Cüneyt Ayy?ld?z Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. `