* 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
21 lines
321 B
Plaintext
21 lines
321 B
Plaintext
//
|
|
// Copyright (C) 2023 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
android_app {
|
|
name: "MtkInCallService",
|
|
|
|
srcs: ["src/**/*.java"],
|
|
resource_dirs: ["res"],
|
|
|
|
certificate: "platform",
|
|
platform_apis: true,
|
|
privileged: true,
|
|
|
|
optimize: {
|
|
enabled: false,
|
|
}
|
|
}
|