pilot51 / voicenotify

Android app that speaks notifications
https://voicenotify.app
Apache License 2.0
152 stars 54 forks source link

Adopting alternate headset detection method if available #21

Closed pugwonk closed 10 years ago

pugwonk commented 10 years ago

Now using AudioManager's methods to detect presence of headset if API level sufficient - isBluetoothA2dpOn() and isWiredHeadsetOn(). These are marked as deprecated in the Android API documents, but is suggested for use by Google's own docs (http://developer.android.com/training/managing-audio/audio-output.html).

Manifest modified to add the permission MODIFY_AUDIO_SETTINGS which is required for isWiredHeadsetOn() to work properly.