mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-22 12:05:32 -04:00
* Using enum classes for various statuses for good readability * Implement favorite channel saving which was missing * Use Kotlin coroutines again for refreshing channel list button, for faster UI response * Added javadoc for better functions description * Also, code native audio routing system on jni (fm_route.cpp) Change-Id: I993c88fdb580248d8a55efd8e9b6fed0e36d9b24 Signed-off-by: roynatech2544 <whiteshell2544@naver.com>
29 lines
773 B
Text
29 lines
773 B
Text
android_app {
|
|
name: "FMRadio",
|
|
srcs: [
|
|
"src/**/*.kt",
|
|
],
|
|
platform_apis: true,
|
|
privileged: true,
|
|
certificate: "platform",
|
|
jni_libs: ["libfmnative_jni"],
|
|
static_libs: [
|
|
"androidx.core_core",
|
|
"androidx.appcompat_appcompat",
|
|
"com.google.android.material_stable",
|
|
"kotlinx_coroutines",
|
|
"androidx.transition_transition",
|
|
"kotlinx_coroutines_android",
|
|
"androidx.coordinatorlayout_coordinatorlayout"
|
|
],
|
|
required: [
|
|
"privapp_whitelist_com.eurekateam.fmradio.xml",
|
|
"vendor.eureka.hardware.fmradio@1.2-service",
|
|
],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "privapp_whitelist_com.eurekateam.fmradio.xml",
|
|
src: "privapp_whitelist_com.eurekateam.fmradio.xml",
|
|
sub_dir: "permissions",
|
|
}
|