Комментарии:
how to get all of the library you used this projects , you should give all the library in this video description
ОтветитьThank you
Make send notification from admin app to user app
God bless you man, you are a gift to the community.
ОтветитьHow to generate token id for all device?
ОтветитьYou didnt replied me at all !!!
Ответить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();
}
});
@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());
}
Wonderful music but non pedagogic video.
ОтветитьI've followed every step and it's not working
Ответить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?
For IOS?
Ответитьcó cách nào để cho app đó lưu trữ messaging đó luôn không ạ
ОтветитьThanks to your video, I did something that I couldn't do after watching many videos.
ОтветитьWhen I touch the notification, I want to open the URL in the notification body in webview. Can you help me with this?
Ответить