Hello.
In some applications, there are buttons that send stupid users to the desired page in the settings of a particular application (see photo). screenshot of settings window

The following question arises: how can I send a person to the settings page of the Task Manager's white sheet (specifically on my device me: Battery Manager -> Protected Applications) or is there another way to solve the problem described below?


A little more detail:
When developing an application for Android, it became necessary to create a receiver ( Receiver ) to track the state of the phone for a call (if simpler, then you need to display a missed call notification). The problem is this: on a device with Android 4.4, everything works fine, but on Android 6.0, notifications do not come if the application has been closed. The receiver is declared directly in the manifest:

 <application> .... <receiver android:name=".CallReceiver" android:excludeFromRecents="true"> <intent-filter> <action android:name="android.intent.action.PHONE_STATE"/> </intent-filter> </receiver> </application> 

    0