Because of a bug in the Android source code for Android 4.0 and 4.1, voice search in my application causes a crash(Bundle not passed through voice search intent). Because the nature of this bug, it is very difficult for a work around to occur.I was wondering if there was a way to enable voice search for certain API levels? I'm wondering if this would need to be done programmatically or by some xml magic. I don't know how I would access the searchable configuration at runtime, but I'm sure there is a way.Any ideas would be appreciated.Here is my searchable.xml for reference. \[code\]<searchable xmlns:android="http://schemas.android.com/apk/res/android" android:label="@string/empty_string" android:hint="@string/search_hint" android:searchMode="showSearchLabelAsBadge" android:searchSuggestAuthority="@string/common_recents_search_authority" android:searchSuggestSelection="?" android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"/>\[/code\]