System app database

Package

com.android.soundrecorder

Sound Recorder

40device profiles
70observations
16user-facing hits
18 Sep 2026last seen

Guidance

verified 30 Aug 2026

"Sound Recorder", a voice recorder that appears in the launcher on many devices. The package name comes from the Android Open Source Project: the AOSP repository packages/apps/SoundRecorder declares exactly com.android.soundrecorder, and the AOSP app is a small recorder that asks for little more than RECORD_AUDIO, INTERNET, WAKE_LOCK and external storage. The important thing about this entry is that the package name is shared, not that the app is. This site records it across 26 different makes, signed by six distinct keys with no consistent signer, with version strings that do not even share a scheme, from a bare "12" to 3.3.6.8. The vendors seen include Fairphone, OUKITEL, Xiaomi, itel, realme, Blackview, DOOGEE, Ulefone, Unihertz, motorola and rugged or purpose-built brands such as Crosscall, Datalogic, CipherLab, Newland and Elo Touch Solutions. Several of those signing keys also sign the device's framework. In other words, what is installed under this name is usually the OEM's own recorder built on, or simply named after, the AOSP one, and two devices with the same package name do not necessarily have the same app. The permission sets bear that out and are worth checking per device rather than assuming. The widest observation here declares 36 permissions, well beyond the AOSP app's, including MODIFY_PHONE_STATE, READ_PRIVILEGED_PHONE_STATE, MANAGE_EXTERNAL_STORAGE, INTERACT_ACROSS_USERS and INTERACT_ACROSS_USERS_FULL, and on at least one build a set of Xiaomi and MIUI vendor permissions. Telephony-related permissions on a recorder are the sort of thing worth understanding before deployment, though this site records only what a package requests, which does not establish that call recording is implemented. Version note: the AOSP app is effectively dormant. Its last functional change on the main branch landed in July 2020, and the only later change was an OWNERS file edit in February 2025. Meanwhile this package is observed here on devices running OS API levels 27 through 36, with the builds themselves targeting API 27 to 35. So a recent build under this name is almost certainly the vendor's own code rather than a current AOSP one, and its behaviour is set by the OEM, not by Google. Nothing sourced here indicates the package was superseded, modularised or default-disabled in a particular Android release. For Android Enterprise, EMM and kiosk work, treat it as a user-facing app that happens to be preinstalled and to sit on the microphone. Where a recorder is unwanted, the app-level route in Android Management API policy is an applications entry for the package with installType BLOCKED, which Google documents as blocking the app from being installed and uninstalling it if a previous policy had installed it; confirm the result on a preinstalled system app on your own hardware rather than assuming. Where the concern is recording itself rather than this one app, microphoneAccess set to MICROPHONE_ACCESS_DISABLED is the device-wide control on a fully managed device. No safe_to_disable rating is given here on purpose: with 26 vendors behind one package name, a single verdict would be misleading, and what breaks when you remove it depends on whose build is in front of you.

Package intelligence

Observed signing, permission, version and size signals from contributing devices - descriptive of that sample, not a verdict. These come from the v2 Package Search sync, which not every device has contributed to yet, so for some packages this detail is partial or not present at all.

6
signing certs
OEM-forked / varies
36
permissions
largest set observed
0.2 MB – 16.6 MB
APK size
27 – 35
target SDK
12 → 3.3.6.8
versions observed
13
device profiles
Declared permissions (36)

Largest permission set observed for this package. Text is Android's own published description where one exists; platform permissions Android does not document show their granted protection level (in grey) instead; vendor or unknown constants show the name only.

PermissionDescription
READ_PRIVILEGED_PHONE_STATE -
ACCESS_NETWORK_STATE Allows the app to view information about network connections such as which networks exist and are connected.
ACCESS_NOTIFICATION_POLICY Allows the app to read and write Do Not Disturb configuration.
ACCESS_WIFI_STATE Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.
ACTION_HEADSET_PLUG -
AUTHENTICATE_ACCOUNTS Install-time permission, granted automatically. docs ↗
BLUETOOTH Allows the app to view the configuration of the Bluetooth on the phone, and to make and accept connections with paired devices.
CHANGE_NETWORK_STATE Allows the app to change the state of network connectivity.
CHANGE_WIFI_STATE Allows the app to connect to and disconnect from Wi-Fi access points and to make changes to device configuration for Wi-Fi networks.
FOREGROUND_SERVICE Allows the app to make use of foreground services.
INTERACT_ACROSS_USERS Signature or privileged system permission.
INTERACT_ACROSS_USERS_FULL Signature-level system permission, for platform-signed apps.
INTERNET Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.
MANAGE_EXTERNAL_STORAGE Signature-level system permission, for platform-signed apps. docs ↗
MANAGE_NOTIFICATIONS Signature-level system permission, for platform-signed apps.
MODIFY_AUDIO_SETTINGS Allows the app to modify global audio settings such as volume and which speaker is used for output.
MODIFY_PHONE_STATE Signature or privileged system permission.
POST_NOTIFICATIONS Allows the app to show notifications
READ_SYNC_SETTINGS Allows the app to read the sync settings for an account. For example, this can determine whether the People app is synced with an account.
READ_SYNC_STATS Allows an app to read the sync stats for an account, including the history of sync events and how much data is synced.
RECEIVE_BOOT_COMPLETED Allows the app to have itself started as soon as the system has finished booting. This can make it take longer to start the phone and allow the app to slow down the overall phone by always running.
RECORD_AUDIO This app can record audio using the microphone while the app is in use.
START_ACTIVITIES_FROM_BACKGROUND Signature or privileged system permission. docs ↗
STATUS_BAR_SERVICE Signature-level system permission, for platform-signed apps.
USE_CREDENTIALS Install-time permission, granted automatically.
VIBRATE Allows the app to control the vibrator.
WAKE_LOCK Allows the app to prevent the phone from going to sleep.
WRITE_SETTINGS Allows the app to modify the system's settings data. Malicious apps may corrupt your system's configuration.
WRITE_SYNC_SETTINGS Allows an app to modify the sync settings for an account. For example, this can be used to enable sync of the People app with an account.
com.miui.securitycenter.permission.PERM_USE_INFO -
com.miui.securitycenter.permission.SYSTEM_PERMISSION_DECLARE -
com.xiaomi.market.sdk.UPDATE -
com.xiaomi.passport.permission.PASSPORT_UI_CONTROLLER_SERVICE -
com.xiaomi.permission.AUTH_SERVICE -
com.xiaomi.permission.CLOUD_MANAGER -
com.xiaomi.permission.SYNC_TAG_DATA -

Manage on devices

ADB commands for this package (the inverse of each is included so you can undo). Run from an authorised shell or wire the equivalent into your DPC. Verify on a test device first - this database doesn’t yet classify which packages are safe to change. --user 0 targets the current user; drop it (and use a privileged shell) to act device-wide.

Disable for the current user
adb shell pm disable-user --user 0 com.android.soundrecorder
Remove for the current user - a per-user uninstall; the APK stays on /system, so Restore re-adds it (-k keeps app data)
adb shell pm uninstall -k --user 0 com.android.soundrecorder
Re-enable
adb shell pm enable com.android.soundrecorder
Restore (re-install for the current user)
adb shell pm install-existing com.android.soundrecorder

Seen on

Each record is a device profile (make + model + Android version). Each unique handset that syncs against a matching profile will increase the observations of a package, thereby increasing confidence that a package is expected to be on a device.

OEMModelAndroidProvenanceObservationsLast seen
A-gold Titan Android 9.0 - 5 15 Jun 2025
ALCommon ALCommon Android 15 - 1 20 Jun 2025
Ant Dao Technology Limited B3 Android 14 - 1 18 Aug 2026
Blackview VARG Android 11 - 1 1 Sep 2025
CipherLab RK95 Android 9.0 - 3 25 Sep 2025
Crosscall Stellar-X5 Android 13 - 1 16 Jul 2025
Crosscall Stellar-X5 Android 14 - 3 1 Sep 2025
Crosscall Stellar-X5 Android 15 - 1 23 Aug 2026
CUBOT P80 Android 13 - 2 20 Sep 2025
Datalogic Memor 35/35X Android 15 - 1 1 user-facing 11 Nov 2025
DOOGEE S41 Max Android 13 - 2 3 Oct 2025
Elo Touch Solutions 15in-I-Series-5 Android 14 - 12 22 Nov 2025
Fairphone Fairphone 6 Android 15 - 2 6 Nov 2025
Fairphone FP4 Android 13 - 1 1 user-facing 20 Dec 2025
Fairphone FP4 Android 15 OEM Fairphone 3 2 user-facing 18 Sep 2026
Fairphone FP5 Android 15 - 1 4 Aug 2026
Fezawio F11_V_US Android 15 - 1 14 Jul 2026
Hotwav TAB R9 Pro Android 14 - 1 1 user-facing 18 Sep 2025
Itel Mobile Limited itel A16 Plus Android 8.1 OEM ITEL MOBILE LIMITED 1 1 user-facing 6 Dec 2025
Motorola moto g14 Android 13 - 1 19 Dec 2025
Newland NLS-MT95 Android 15 - 1 19 Aug 2026
NUU N5501L Android 8.1 - 3 21 Aug 2025
NUU S6707X Android 14 - 1 12 Jan 2026
OUKITEL C59 Pro Android 15 - 1 1 user-facing 6 Nov 2025
OUKITEL WP100 TITAN Android 14 - 2 25 Jul 2025
OUKITEL WP100 TITAN Android 15 - 1 6 Dec 2025
OUKITEL WP28 E Android 14 OEM OUKITEL 1 1 user-facing 24 Aug 2026
OUKITEL WP60 Android 15 - 3 9 Dec 2025
realme RMX3627 Android 12 - 1 1 user-facing 20 Sep 2025
realme RMX3690 Android 12 - 1 1 user-facing 25 Nov 2025
Revoview S6518 Android 11 - 1 30 Mar 2026
Rhino C10 Android 10 - 1 1 user-facing 14 Jul 2025
Smt_hk Helium Pro Android 12 - 1 1 user-facing 19 Jul 2025
Smt_hk OV2219 Android 12L OEM SMT_HK 1 1 user-facing 16 Feb 2026
Smt_hk YUMPINGO_1 Android 9.0 - 1 9 Aug 2025
Ulefone Power Armor X11 Pro Android 12 - 1 15 Sep 2025
Unihertz Titan 2 Android 15 - 2 5 Jan 2026
Urao X108 Android 16 OEM URAO 1 1 user-facing 3 Jun 2026
Xiaomi M2012K11AG Android 13 - 1 1 user-facing 1 Oct 2025
Xiaomi M2101K6G Android 13 OEM Xiaomi 1 1 user-facing 8 Mar 2026

Known labels

Locale-aware display names seen in the wild.

LabelLocaleSeen
Sound Recorder en-us 42
Sound Recorder en-gb 18
Sound Recorder en 10
Sound Recorder en-US 4
Диктофон ru-ru 3
Grabadora de sonidos es-es 2
Sound Recorder en-GB 2
Grabadora es-US 1
Grabadora es-us 1
Registratore suoni it-it 1
Sound Recorder en-za-u-fw-mon-mu-celsius 1
เครื่องบันทึกเสียง th-th 1
音声レコーダー ja-jp 1