I have implemented a implicit broadcast receiver to listen to phone calls
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/>
<receiver android:name=".CallReceiver" >
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>
and I compiled and made the target 26 but still my broadcast receiver is working like usually.
As i read here https://developer.android.com/preview/features/background.html#broadcasts that this should not work anymore.
can anyone please tell to me if there is exception on my broadcast android.permission.READ_PHONE_STATE