1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "packages_apps_CellBroadcastReceiver_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: [
8        "packages_apps_CellBroadcastReceiver_license",
9    ],
10}
11
12apex_defaults {
13    name: "com.android.cellbroadcast-defaults",
14    updatable: true,
15    min_sdk_version: "30",
16
17    manifest: "apex_manifest.json",
18
19    // optional. if unspecified, a default one is auto-generated
20    androidManifest: "AndroidManifest.xml",
21
22    key: "com.android.cellbroadcast.key",
23    certificate: ":com.android.cellbroadcast.certificate",
24    // Indicates that pre-installed version of this apex can be compressed.
25    // Whether it actually will be compressed is controlled on per-device basis.
26    compressible: true,
27}
28
29apex_key {
30    name: "com.android.cellbroadcast.key",
31    public_key: "com.android.cellbroadcast.avbpubkey",
32    private_key: "com.android.cellbroadcast.pem",
33}
34
35android_app_certificate {
36    name: "com.android.cellbroadcast.certificate",
37    certificate: "com.android.cellbroadcast",
38}
39
40apex {
41    name: "com.android.cellbroadcast",
42    defaults:["com.android.cellbroadcast-defaults"],
43    apps: ["CellBroadcastApp", "CellBroadcastServiceModule"],
44}
45