I am trying to code some basic speech recognizer, so far on emulator only, but Intent RECOGNIZE_SPEECH is not present on emulator, I tried all versions from 1.5 to 2.1...
I'm getting:
ERROR/AndroidRuntime(280): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.speech.action.RECOGNIZE_SPEECH (has extras) }
and of course:
Using java Syntax Highlighting
- PackageManager pm = getPackageManager();
- List<ResolveInfo> activities = pm.queryIntentActivities(
- new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
gives back empty list.
Any ideas how to solve this?
Regards
Konrad


