Hi everyone! I'm working on a holographic voice assistant similar to Jarvis, but I have a bit of a challenge. I've built the user interface and it's looking awesome, but I'm facing an issue with using libraries. I'm using Pydroid, which is a Python IDE for Android, but it doesn't support some libraries like PyAudio. PyAudio is essential for converting speech to text, allowing my AI to understand commands. Does anyone know of any good alternatives for handling speech recognition on Android?
1 Answer
When it comes to using audio input on Android, you might run into permission issues. Android apps need to declare permissions in their manifest file for things like audio input. Since Pydroid doesn't have these permissions set up, you're likely unable to access the microphone directly.

Can you explain this a little more? I'm new to Python and usually work with C and Arduino, so I'm not too familiar with how all this works.