diff --git a/api/lineage_current.txt b/api/lineage_current.txt
index 226db9be..82b01c3b 100644
--- a/api/lineage_current.txt
+++ b/api/lineage_current.txt
@@ -309,22 +309,6 @@ package lineageos.hardware {
}
-package lineageos.media {
-
- public class MediaRecorder {
- ctor public MediaRecorder();
- field public static final java.lang.String ACTION_HOTWORD_INPUT_CHANGED = "org.lineageos.intent.action.HOTWORD_INPUT_CHANGED";
- field public static final java.lang.String CAPTURE_AUDIO_HOTWORD_PERMISSION = "android.permission.CAPTURE_AUDIO_HOTWORD";
- field public static final java.lang.String EXTRA_CURRENT_PACKAGE_NAME = "org.lineageos.intent.extra.CURRENT_PACKAGE_NAME";
- }
-
- public static class MediaRecorder.AudioSource {
- ctor public MediaRecorder.AudioSource();
- field public static final int HOTWORD = 1999; // 0x7cf
- }
-
-}
-
package lineageos.os {
public class Build {
diff --git a/lineage/res/AndroidManifest.xml b/lineage/res/AndroidManifest.xml
index ce7360f1..81b44a1e 100644
--- a/lineage/res/AndroidManifest.xml
+++ b/lineage/res/AndroidManifest.xml
@@ -26,7 +26,6 @@
Broadcast Action: The state of the HOTWORD audio input has changed.:
- *This is a protected intent that can only be sent - * by the system. It can only be received by packages that hold - * {@link android.Manifest.permission#CAPTURE_AUDIO_HOTWORD}. - */ - //@SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) - public static final String ACTION_HOTWORD_INPUT_CHANGED - = "org.lineageos.intent.action.HOTWORD_INPUT_CHANGED"; - - /** - * Extra for {@link #ACTION_HOTWORD_INPUT_CHANGED} that provides the package name of the - * app in that controlled the HOTWORD input when the state changed. Can be reused for other - * purposes. - */ - public static final String EXTRA_CURRENT_PACKAGE_NAME = - "org.lineageos.intent.extra.CURRENT_PACKAGE_NAME"; - - /** - * Extra for {@link #ACTION_HOTWORD_INPUT_CHANGED} that provides the state of - * the input when the broadcast action was sent. - * @hide - */ - public static final String EXTRA_HOTWORD_INPUT_STATE = - "org.lineageos.intent.extra.HOTWORD_INPUT_STATE"; - - - public static class AudioSource { - /** - * Audio source for preemptible, low-priority software hotword detection - * It presents the same gain and pre processing tuning as - * {@link android.media.MediaRecorder.AudioSource#VOICE_RECOGNITION}. - *
- * An application should use this audio source when it wishes to do - * always-on software hotword detection, while gracefully giving in to any other application - * that might want to read from the microphone. - *
- * You must hold {@link lineageos.media.MediaRecorder#CAPTURE_AUDIO_HOTWORD_PERMISSION} - * to use this audio source. - */ - public static final int HOTWORD = 1999; - } -}