79332072

Date: 2025-01-06 04:44:00
Score: 0.5
Natty:
Report link

Try setting a package name to your broadcast intent like:

val intent = Intent(TIMER_UPADATED)
time++
intent.putExtra(TIME_EXTRA, time)
intent.setPackage(packageName) // <-- add this line
sendBroadcast(intent)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jokuskay