How to Implement Voice Recording in AppMaster (Mobile & Web)?

Hi everyone

I’m building an app in AppMaster and I want to include a feature that allows users to record their voice/audio directly inside the app, for both mobile and web versions.

However, I couldn’t find any built-in component or option in the UI designer that supports voice recording.

What I Tried

As a workaround, I tried using embedded HTML inside a Web Component to create a simple voice recorder interface. But when I tested it, I received the following error:

Microphone access denied or not supported: Cannot read properties of undefined (reading 'getUserMedia')

It looks like microphone access is blocked or unsupported in this setup.


What I’d Like to Know

  • Is there any recommended way to implement voice/audio recording inside an AppMaster app?
  • Does AppMaster plan to support this natively in the future?
  • Has anyone found a reliable workaround for adding voice recording that works on both mobile and web?

Any guidance would be really appreciated — thanks in advance!

@Jyoti_Deep Hello. Yes, AppMaster does support voice/audio recording functionality.

To implement this feature, you can use the following WEB business process blocks:

  • Sound Recorder Start – initiates the audio recording
  • Sound Recorder Stop – stops the recording
  • Sound Recorder Get Status – allows you to check the current status of the recorder

These blocks enable you to build a BP for recording audio directly within your web app.