Is it possible to turn off the silent mode programmatically in Android?
Yes this is possible to turn off and on the silent mode programmatically below is the code :
AudioManager audioManager = (AudioManager) getSystemService(AUDIO_SERVICE);
for setting silent mode :
audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
For normal mode :
audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);