java.lang.SecurityException:权限拒绝:来自pid = 1484,uid = 10151(需要uid = 1000)的getIntentSender()
问题描述:
我在使用Android 4.4.2
I am getting this error specifically on HTC DESIRE 626GPLUS DUAL SIM with Android 4.4.2
java.lang.SecurityException: Permission Denial: getIntentSender() from pid=1484, uid=10151, (need uid=1000) is not allowed to send as package android
at android.os.Parcel.readException(Parcel.java:1472)
at android.os.Parcel.readException(Parcel.java:1426)
at android.app.INotificationManager$Stub$Proxy.cancelAllNotifications(INotificationManager.java:271)
at android.app.NotificationManager.cancelAll(NotificationManager.java:220)
at com.bakar.GcmIntentService.onHandleIntent(GcmIntentService.java:92)
at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
at android.os.Handler.dispatchMessage(Handler.java:110)
at android.os.Looper.loop(Looper.java:193)
at android.os.HandlerThread.run(HandlerThread.java:61)
答
尝试将try-catch添加到您的代码中,如下所示:
Try adding a try-catch to your code, like this :
NotificationManager nMgr = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
try {
nMgr.cancelAll();
} catch (Exception e) {
e.printStackTrace();
}
您提到的设备型号可能不支持
作为cancelAll().
as cancelAll() may not be supported by the device model you mentioned.