1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5android_app {
6    name: "CarShell",
7    srcs: ["src/**/*.java"],
8    // Although it has carshell name, it add permission to shell package
9    required: ["allowed_privapp_com.android.carshell"],
10    platform_apis: true,
11    certificate: "platform",
12    overrides: ["Shell"],
13    privileged: true,
14    static_libs: ["Shell-package-library"],
15}
16