Skip to content

Instantly share code, notes, and snippets.

@keyboardr
Created May 20, 2013 20:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keyboardr/5615431 to your computer and use it in GitHub Desktop.
Save keyboardr/5615431 to your computer and use it in GitHub Desktop.
IntentFilter for backdoor. Accessed by entering *#*#code#*#* into the dialer
<!-- Replace 111222 with your secret code -->
<receiver android:name=".receiver.DiagnoserReceiver">
    <intent-filter>
        <action android:name="android.provider.Telephony.SECRET_CODE"/>
        <data android:scheme="android_secret_code" android:host="111222"/>
    </intent-filter>
</receiver>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment