Try this,
Add to this in the manifest, here is host 12456, so your secret code is ## 123456 ## (dial the number on the dialing number)
<receiver android:name=".Dialer"> //here is your broadcast receiver class <intent-filter> <action android:name="android.provider.Telephony.SECRET_CODE" /> <data android:scheme="android_secret_code" android:host="123456" /> </intent-filter> </receiver>
here is your broadcast receiver class:
class Dialer : BroadcastReceiver() { override fun onReceive(context: Context?, intent: Intent?) {
Ronak patel
source share