Skip to content

Push Notifications example. Using PHP and FireBase,

Notifications You must be signed in to change notification settings

aemresk/PushNotifications

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Android PushNotifications using PHP 

You should add firebase services AndroidManifest.xml 

 	<service
            android:name=".FirebaseMessagingService">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT"/>
            </intent-filter>
        </service>
        <service
            android:name=".FirebaseInstanceIDService">
            <intent-filter>
                <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
            </intent-filter>
        </service>

And add this plugin your Gradle
    compile 'com.google.firebase:firebase-messaging:9.0.0'
    compile 'com.squareup.okhttp3:okhttp:3.2.0'

and this; 
apply plugin: 'com.google.gms.google-services'

About

Push Notifications example. Using PHP and FireBase,

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published