* Gain control has always been a problem on MediaTek devices running AOSP. It lacks the necessary mods which MediaTek have in their frameworks for properly setting the gain level during calls. * Write an app which replicates to an extent what the stock MediaTek framework does for controlling gain levels during calls. Signed-off-by: bengris32 <bengris32@protonmail.ch> Change-Id: I08278ef039a579cd46ebc04d14be8e317b3772d1
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2023 The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lineageos.mediatek.incallservice"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:persistent="true">
|
|
<receiver
|
|
android:directBootAware="true"
|
|
android:exported="true"
|
|
android:name="org.lineageos.mediatek.incallservice.OnLockedBootCompleteReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<service
|
|
android:directBootAware="true"
|
|
android:name="org.lineageos.mediatek.incallservice.VolumeChangeService">
|
|
</service>
|
|
</application>
|
|
</manifest>
|