Activity can't start from broadcast receiver
问题 Start Activity from Broadcast receiver is not working on android 9 but its working below android 9 it's working fine, I searched a lot regarding this but could not find the suitable solution. Does anyone face the same problem, here is my code . public void onReceive(final Context context, Intent intent) { try { this.tm = (TelephonyManager) context.getSystemService("phone"); this.tm.listen(new PhoneStateListener() { public void onCallStateChanged(int state, final String num) { if (state == 1 &