BluePrint for Android Library Project
How to configure Android.bp for an android library
Here is list of some properties in an android library blueprint
Here is an example Android.bp file
android_library {
name: "CarLauncher-core",
platform_apis: true,
srcs: ["src/**/*.java"],
resource_dirs: ["res"],
static_libs: [
"androidx-constraintlayout_constraintlayout-solver",
"androidx-constraintlayout_constraintlayout",
"androidx.lifecycle_lifecycle-extensions",
"car-media-common",
"car-telephony-common",
"car-ui-lib",
"WindowManager-Shell",
],
libs: ["android.car"],
manifest: "AndroidManifest.xml",
}Last updated