• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2020 The Android Open Source Project
2// legacy app only used to preserve data and migrate to CellBroadcastApp.
3// This will not be part of the Cellbroadcast mainline module.
4// The app is included to system img by default. If OEMs have their own legacy
5// app they can replace this one. If OEMs don't care about data loss or data
6// migration complete, OEMs can remove this app going forward.
7package {
8    // See: http://go/android-license-faq
9    // A large-scale-change added 'default_applicable_licenses' to import
10    // all of the 'license_kinds' from "packages_apps_CellBroadcastReceiver_license"
11    // to get the below license kinds:
12    //   SPDX-license-identifier-Apache-2.0
13    default_applicable_licenses: [
14        "packages_apps_CellBroadcastReceiver_license",
15    ],
16}
17
18android_app {
19    name: "CellBroadcastLegacyApp",
20    manifest: "AndroidManifest.xml",
21    certificate: "platform",
22
23    static_libs: [
24        "androidx.appcompat_appcompat",
25    ],
26
27    libs: ["app-compat-annotations"],
28
29    srcs: [
30        "src/**/*.aidl",
31        "src/**/*.java",
32        ":framework-annotations",
33        ":cellbroadcast-database-sources",
34    ],
35    privileged: true,
36    sdk_version: "system_current",
37}
38