I need a solution for this (I haven't tried it in mobile yet cause the program is in the development stage but I know the question will also get a late response) that if I have multiple modules installed via command prompt and if I use those modules to make an android app then will the app function as it did in the PC or will it say that the modules are missing and keep on crashing, I'm new to app development please help me.
2 Answers
An important thing to know is that PyAudio provides Python bindings for PortAudio, a cross-platform audio I/O library. It unifies APIs from every OS like ASIO for professional Audio WASAPI for Windows, Core Audio for Mac and ALSA for Linux, etc. so you want to know if PortAudio support Android.
Have a look here: https://source.android.com/devices/audio
Android is using ALSA, which PortAudio supports, so Pyaudio should support it as well. I guess the only way to make sure is to try it out. :)
4 Comments
If you include the module in the compilation process (I don't know what you're using for compiling/developing so not sure how to help there) the app won't crash. In the worst case it will just not play the audio, but the rest of the app should work (unless some part of it requires the audio to be played).