summaryrefslogtreecommitdiff
path: root/apex/Android.bp
diff options
context:
space:
mode:
authorChen Xu <fionaxu@google.com>2019-12-15 01:04:04 -0800
committerChen Xu <fionaxu@google.com>2019-12-15 10:41:43 -0800
commitd48c6cf5d1bdf159b54e07db9bbc3284020cfb84 (patch)
treec262e8489e377cca76b07c51fdb03173df084479 /apex/Android.bp
parentccf4bc265381f2648bc6f9aacf6df08dc95d2b1d (diff)
downloadCellBroadcastReceiver-d48c6cf5d1bdf159b54e07db9bbc3284020cfb84.tar.gz
Add cellbroadcast e2e tests
Add cellbroadcast e2e tests. Currently they're not performing any validation other than the default steps, but we'll add more as the apex gets fleshed out. Bug: 135956699 Test: atest cellbroadcast_e2e_tests Change-Id: I51caf6e16a2cdd2ee03427254b63e72d78369d55
Diffstat (limited to 'apex/Android.bp')
-rw-r--r--apex/Android.bp12
1 files changed, 8 insertions, 4 deletions
diff --git a/apex/Android.bp b/apex/Android.bp
index 8e71cf0d9..b4b824b0e 100644
--- a/apex/Android.bp
+++ b/apex/Android.bp
@@ -1,13 +1,11 @@
-apex {
- name: "com.android.cellbroadcast",
+apex_defaults {
+ name: "com.android.cellbroadcast-defaults",
manifest: "apex_manifest.json",
// optional. if unspecified, a default one is auto-generated
androidManifest: "AndroidManifest.xml",
- apps: ["CellBroadcastApp", "CellBroadcastServiceModule"],
-
key: "com.android.cellbroadcast.key",
certificate: ":com.android.cellbroadcast.certificate",
}
@@ -22,3 +20,9 @@ android_app_certificate {
name: "com.android.cellbroadcast.certificate",
certificate: "com.android.cellbroadcast",
}
+
+apex {
+ name: "com.android.cellbroadcast",
+ defaults:["com.android.cellbroadcast-defaults"],
+ apps: ["CellBroadcastApp", "CellBroadcastServiceModule"],
+} \ No newline at end of file