Android Development Tutorial - Firebase Cloud Messaging

Android Development Tutorial - Firebase Cloud Messaging

EDMT Dev

1 год назад

7,038 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@sologamingbd
@sologamingbd - 11.04.2023 07:24

how to get all of the library you used this projects , you should give all the library in this video description

Ответить
@samirdesigner3324
@samirdesigner3324 - 11.04.2023 08:10

Thank you
Make send notification from admin app to user app

Ответить
@bebitoomar
@bebitoomar - 11.04.2023 15:28

God bless you man, you are a gift to the community.

Ответить
@loweszone4660
@loweszone4660 - 11.04.2023 21:37

How to generate token id for all device?

Ответить
@muhammadwaleedijaz5651
@muhammadwaleedijaz5651 - 12.04.2023 01:03

You didnt replied me at all !!!

Ответить
@dev_hema_gaming6940
@dev_hema_gaming6940 - 07.05.2023 07:06

FirebaseMessaging.getInstance().getToken()
.addOnCompleteListener(new OnCompleteListener<String>() {
@Override
public void onComplete(@NonNull Task<String> task) {
if (!task.isSuccessful()) {
Log.w("TAG", "Fetching FCM registration token failed", task.getException());
return;
}

// Get new FCM registration token
String token = task.getResult();

// Log and toast

Log.d("TAG", token);
Toast.makeText(MainActivity.this, token, Toast.LENGTH_SHORT).show();
}
});

Ответить
@dev_hema_gaming6940
@dev_hema_gaming6940 - 07.05.2023 07:09

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d("TAG", "From: " + remoteMessage.getFrom());
Log.d("TAG",remoteMessage.getData().toString());
Log.d("TAG",remoteMessage.getMessageId().toString());
Log.d("TAG",remoteMessage.getNotification().toString());

}

Ответить
@eduardocobian3238
@eduardocobian3238 - 13.05.2023 16:02

Wonderful music but non pedagogic video.

Ответить
@josheyy1
@josheyy1 - 14.05.2023 17:58

I've followed every step and it's not working

Ответить
@rembog88
@rembog88 - 14.07.2023 09:59

Hello, I get this error when I want to test at the end (just when I launch the application) :
Cause : superclass access check failed : class butterknife.compiler.ButterKnifeProcessor$RScanner (in unnamed module @0x44215f2d) cannot access class com.sun.tools.javac.tree.TreeScanner (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.tree to unnamed module @0x44215f2d

What can I do?

Ответить
@drum-lab
@drum-lab - 08.09.2023 07:22

For IOS?

Ответить
@thuanm.6861
@thuanm.6861 - 24.09.2023 16:56

có cách nào để cho app đó lưu trữ messaging đó luôn không ạ

Ответить
@ibrahim4098
@ibrahim4098 - 11.10.2023 21:15

Thanks to your video, I did something that I couldn't do after watching many videos.

Ответить
@BeratCeylan-cb5no
@BeratCeylan-cb5no - 18.04.2024 12:47

When I touch the notification, I want to open the URL in the notification body in webview. Can you help me with this?

Ответить