PUSH
Push notifications allow developers to send reliable and efficient messages from servers or the cloud to mobile devices. By using push, you can send notification messages (messages that the system displays to the user) and data messages (key-value pairs of data that the app processes) to mobile apps and web apps. Push notifications support a variety of platforms, including iOS, Android, and web applications.
Key Features
Variety of Message Types: You can send various types of messages, including notification messages and data messages.
Mass Messaging: Push notifications allow you to send messages to millions of users simultaneously, enabling efficient messaging in large-scale applications.
Cross-Platform Support: Messages can be received on various platforms, including iOS, Android, and web applications.
Advanced Messaging Options: Offers advanced features like setting message priorities, message lifespan, topic-based subscriptions, and conditional message delivery.
How to Use Push Notifications (Mobile)
Set Up Firebase Project
Create a project in the Firebase Console (console.firebase.google.com).
Add an application (Android or iOS) to the created project.
Download the necessary Firebase configuration files (google-services.json or GoogleService-Info.plist) and add them to the Gamepot Dashboard under settings.
Add FCM SDK
For Android, add the necessary definitions in the build.gradle.kts files for both the app module and project module.
iOS의 경우, CocoaPods을 사용하여
Firebase/Messaging
pod를 설치합니다.
Requesting Permission for Push Notifications (iOS)
For iOS apps, you must request permission from the user to allow push notifications. This can be done using
UNUserNotificationCenter
.
Device Token Registration and Message Reception
When the app is installed and launched, the FCM SDK generates a unique token for the app instance. This token can be registered on the server to send messages to specific devices.
To receive messages, implement a listener in the application.
By using FCM, you can enhance user engagement, deliver critical information quickly, and build a customized notification system that supports a variety of messaging scenarios. FCM provides developers with a variety of tools and APIs to easily integrate and manage cloud messaging.
Add Code to Set Up Push
No additional actions are required to use push notifications.
Change Push Status
To change the push notification receipt settings, please call the code below.
To check the push notification receipt settings, please call the code below.
How to Test Push Notifications (Mobile)
Push notifications can be tested in three ways:
To verify via the dashboard: Go to Dashboard -> Member List -> Member Details (More Info) Click the Send Push button to send a push notification to the specific member.
How to Test in the Firebase Console (AOS) In the Firebase Console, select your project, go to Messaging, and in the Campaigns section, click the New Campaign button to test message sending.
Copy and paste the token retrieved from the app, click the + button to input the token, and then press the Test button to complete the process. You can verify if the message is sent to the specified token.
(iOS) How to Test in the CloudKit Console Go to the CloudKit Console, navigate to Push Notifications, and create a new notification.
After entering the Device Token and Payload, you can verify if the message is successfully sent to the specified token.
Troubleshooting
Q. java.lang.IllegalStateException: Default FirebaseApp is not initialized in this process com.nbase.main. Make sure to call FirebaseApp.initializeApp(Context) first.
A. A. This error occurs when push notification settings are missing in the gradle
file. Please check the following: build.gradle.kts
at the top level of your project.
Add it to the build.gradle.kts file within the app directory.
Q. org.gradle.api.GradleException: File google-services.json is missing. The Google Services Plugin cannot function without it.
A. This error occurs when the google-services.json
file cannot be found. Please ensure that the file is correctly placed in the root folder of the module: app level.
Example: ./project folder/app/google-services.json
Last updated