0

I am a beginner in android development and i tried to run the code in this link:

http://www.jameselsey.co.uk/blogs/techblog/android-how-to-implement-voice-recognition-a-nice-easy-tutorial/

But i am experiencing crashing errors. What should I do?

1 Answers1

0

Probably, the permission RECORD_AUDIO is missing in the AndroidManifest.xml:

     ...
     <uses-permission android:name="android.permission.RECORD_AUDIO"/>
</manifest>
ViH
  • 419
  • 2
  • 14