我正在開發Android應用程序。在我的應用中,我正在使用Firebase推送通知。當我從服務器推送時,它會在Android設備的狀態欄中顯示通知。使用Firebase推送通知工作正常。請參閱下面的代碼。通知在Android中使用清潔大師應用程序變爲垃圾
我告訴notifaction像這樣的Android
private void showMatchesNotification(String message)
{
notification = new NotificationCompat.Builder(getApplicationContext());
notification.setAutoCancel(true);
notification.setSmallIcon(R.mipmap.ic_launcher);
notification.setWhen(System.currentTimeMillis());
notification.setTicker(message);
notification.setContentTitle(getApplication().getResources().getString(R.string.app_name));
Intent i = new Intent(getApplicationContext(), MainActivity.class);
i.putExtra(MainActivity.FIELD_SELECTED_BOTTOM_TAB, MainActivity.BOTTOM_TAB_MATCHES);
PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(),0,i,PendingIntent.FLAG_UPDATE_CURRENT);
notification.setContentIntent(pendingIntent);
NotificationManager nm = (NotificationManager)getApplicationContext().getSystemService(getApplicationContext().NOTIFICATION_SERVICE);
nm.notify(3,notification.build());
}
問題是,當我在Android中顯示通知,通知成爲清潔大師應用垃圾。如下所示。
但是,當我在敲打,它顯示這樣notifactions。
我的問題是,被通知始終標記爲垃圾如果安裝清潔大師應用程序?有沒有辦法在Clean Master應用程序中推送通知以避免成爲垃圾?我想在狀態欄中顯示我的應用的通知。不在垃圾箱裏。所以請我該怎麼做?
只是一個思考清潔大師的食物:http://forums.androidcentral.com/ask-question/530007-concerned-about-clean-master-s-data-collection-privacy-practices-2.html http ://androidforums.com/threads/cleaning-apps.984881/page-2#post-7186025 –
我面臨同樣的問題。 CM本身就是JUNK應用程序,令人沮喪。爲什麼它會將來自特定應用程序的通知視爲非垃圾通知,並將其餘應用程序視爲垃圾通知? – Atul