mirror of
https://github.com/Anything-at-25-00/android_device_tecno_LG8n.git
synced 2024-11-22 13:46:26 -08:00
54d00be851
* My attempt at fixing in call gain control on MediaTek devices. * It attempts to replicate what the stock MediaTek framework does when controlling the volume of the earpiece speaker, since MTK's audio HAL is not able to set the gain of the speaker from the values sent by AOSP framework. [LinkBoi00] Rebrand to Mediatek In-Call Service Change-Id: I43f727f6fb73a0d38457a41a8361653d1d00e220 Signed-off-by: LinkBoi00 <linkdevel@protonmail.com> Signed-off-by: fjrXTR <fajarslebew31@gmail.com> Signed-off-by: xyzuniverse <dev.xyzuniverse@gmail.com> Signed-off-by: Shirayuki39 <lorddemecrius83@proton.me>
26 lines
987 B
XML
26 lines
987 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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>
|