This app is an audio recorder application that allows users to record audio using the device
1. Microphone,
2. Internal/device audio output, or
3. Both simultaneously
depending on device support and user selection.
Permissions Usage:
• RECORD_AUDIO
Used to capture microphone audio when the user enables microphone recording.
• WRITE_EXTERNAL_STORAGE
Used on older Android versions to save recorded audio files to device storage so users can access, manage, and share recordings.
• FOREGROUND_SERVICE
Required to keep the recording service running reliably while audio recording is active.
• FOREGROUND_SERVICE_MEDIA_PROJECTION
Required for capturing internal/device audio using Android Media Projection APIs on supported Android versions.
• FOREGROUND_SERVICE_MICROPHONE
Required for active microphone recording functionality while the app is running in the foreground.
The app only records audio after explicit user action and consent. No audio is recorded or shared without the user's knowledge.