[APP][4.0+] Secret Codes 1.1

  • Replies:0
FireFly
  • Forum posts: 8

Oct 23, 2013, 12:10:33 PM via Website

Secret Codes is an Open Source application that allows you to browse through hidden codes of your Android phone.



This application will scan through all available secret codes on your device.
Then you will be able to executes these secret codes a discover hidden functionalities.

Google Play Link: Secret Codes




What is a secret code?

In Android a secret code is defined by this pattern: *#*#<code>#*#*.
If such a secret code is executed, the system will trigger this method: (taken form the AOSP Android Open Source Project)

1static private boolean handleSecretCode(Context context, String input) {
2 int len = input.length();
3 if (len > 8 && input.startsWith("*#*#") && input.endsWith("#*#*")) {
4 Intent intent = new Intent(TelephonyIntents.SECRET_CODE_ACTION,
5 Uri.parse("android_secret_code://" + input.substring(4, len - 4)));
6 context.sendBroadcast(intent);
7 return true;
8 }
9
10 return false;
11}


How to execute a secret code?

There are three ways to execute a secret code:

Directly through the dialer application of your Android device.
Simply write the secret code like: *#*#123456789#*#*.
String secretCode = "123456789";
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:*#*#" + secretCode + "#*#*"));
startActivity(intent);
String secretCode = "123456789";
String action = "android.provider.Telephony.SECRET_CODE";
Uri uri = Uri.parse("android_secret_code://" + secretCode);
Intent intent = new Intent(action, uri);
sendBroadcast(intent);


How to create your own secret code?

Add these lines in your AndroidManifest.xml
And whenever *#*#123456789#*#* is submitted, your receiver will be notified.
1<receiver android:name=".MySecretCodeReceiver">
2 <intent-filter>
3 <action android:name="android.provider.Telephony.SECRET_CODE" />
4 <data android:scheme="android_secret_code" android:host="123456789" />
5 </intent-filter>
6</receiver>

Reply