In Android 7.0 and above, you can use this <intent-filter>
in your settings:
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
The settings application should select this and make it available to the user through the icon of this gear.
source
share