Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public void showNotifi()
  2. {
  3. builder.setWhen(System.currentTimeMillis())
  4. .setPriority(Notification.PRIORITY_MAX)
  5. .setOngoing(true);
  6.  
  7. try{
  8. if(notifyManager != null)
  9. notifyManager.notify(0, musicNotifi);
  10. }
  11. catch (Exception e) {
  12. if(AppUtil.isMyPhone())
  13. MainActivity.showErrorMsg(e);
  14. }
  15.  
  16. System.gc();
  17. }
  18.  
  19. java.lang.RuntimeException: android.os.TransactionTooLargeException: data parcel size 295556 bytes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement