1package { 2 // See: http://go/android-license-faq 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6android_app_import { 7 name: "CarMessengerApp", 8 apk: "CarMessengerApp.apk", 9 privileged: true, 10 certificate: "platform", 11 required: ["allowed_privapp_com.android.car.messenger"], 12 overrides: ["messaging"], 13 // This flag is needed because we're inehriting 2 `uses-library` tags from `androidx.window` 14 // that it's coming from Compose support in `car-ui-lib` in the manifest. And Soong is 15 // enforcing that both the shared libraries must be in the image. But since both of them are 16 // set to optional we can use the following flag to ignore the build error. 17 optional_uses_libs: [ 18 "androidx.window.extensions", 19 "androidx.window.sidecar" 20 ] 21} 22