嗨,我需要添加推送通知以代表公司欢迎用户这里是我的代码,但它不起作用
NotificationManager notif=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify=new Notification.Builder
(getApplicationContext()).setContentTitle("BergEsapes").setContentText("Kindly Login Your Account").
setContentTitle("User Register Succesfully").setSmallIcon(R.drawable.appicon).build();
notify.flags |= Notification.FLAG_AUTO_CANCEL;
notif.notify(0, notify);
Run Code Online (Sandbox Code Playgroud) java android push-notification android-notifications android-studio