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    default_applicable_licenses: ["Android-Apache-2.0"],
10}
11
12android_app {
13    name: "CellBroadcastLegacyApp",
14    manifest: "AndroidManifest.xml",
15    certificate: "platform",
16
17    static_libs: [
18        "androidx.appcompat_appcompat",
19    ],
20
21    libs: [
22        "app-compat-annotations",
23        "framework-annotations-lib",
24    ],
25
26    srcs: [
27        "src/**/*.aidl",
28        "src/**/*.java",
29        ":cellbroadcast-database-sources",
30    ],
31    privileged: true,
32    sdk_version: "module_current",
33}
34