android_packages_apps_QcRilAm/Android.bp
Pavel Dubrova 846ee219dc Rewrite in Kotlin
At the I/O 2019 Developer Conference, Google announced that the
Kotlin programming language is now the preferred language for
Android apps.

Kotlin is the future, Android system frameworks begin to correspond
in this language, and new apps will be implemented in Kotlin as well.
AOSP build system supports compilation of Kotlin source code since 2017,
so nothing prevents us from rewriting our apps on it.

All source code corresponds to Google’s Android coding standards which
is clearly described here: https://developer.android.com/kotlin/style-guide

Signed-off-by: Pavel Dubrova <pashadubrova@gmail.com>
2020-01-23 02:30:44 +02:00

22 lines
358 B
Plaintext
Executable file

subdirs = [
"interface",
]
hidl_package_root {
name: "vendor.qti.hardware.radio.am",
path: "vendor/oss/qcrilam/interface/am",
}
android_app {
name: "QcRilAm",
certificate: "platform",
proprietary: true,
srcs: ["src/**/*.kt"],
static_libs: ["vendor.qti.hardware.radio.am-V1.0-java"],
sdk_version: "system_current",
}