In my android app I am using this intent to start fm radio
Intent i = new Intent(Intent.ACTION_MAIN);
PackageManager manager = getPackageManager();
i = manager.g
I've decompiled FM Radio app, and I saw this code:
void sendFMStatusBroadcast(float p1, String p2) {
Intent localIntent1 = new Intent("com.android.fm.player_lock.status.channel");
if(FMRadioProperties.getRegion() == 0x65) {
localString2 = String.format("%.2f", Float.valueOf(p1));
localIntent3.putExtra("freq", "%.2f");
} else {
localIntent1.putExtra("freq", p1 + "");
}
localIntent1.putExtra("name", p2);
sendBroadcast(localIntent1);
}
You should also decompile FM Radio app and search for intent in the Main Activity, and work with that code to get through your problem.