blob: 3bc31b1f399ca6078d2fc61fba1143a0a7969874 [file] [log] [blame]
Bob Badour1fcc3d72021-02-12 18:21:19 -08001package {
2 // See: http://go/android-license-faq
Bob Badourb963ff52022-01-27 19:26:46 -08003 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour1fcc3d72021-02-12 18:21:19 -08004}
5
allenwtsu743d6692021-02-03 14:34:04 +08006android_app {
7 name: "TestRcsApp",
8
9 srcs: [
10 "src/**/*.java",
11 ],
12
13 static_libs: [
14 "androidx-constraintlayout_constraintlayout",
15 "aosp_test_rcs_client_base",
16 "androidx.appcompat_appcompat",
Cole Faust0b9450f2023-12-20 11:57:10 -080017 "libphonenumber-platform",
allenwtsu743d6692021-02-03 14:34:04 +080018 ],
Brad Ebingerd47a2172021-02-08 20:15:32 +000019
Jihoon Kangf078bf22024-08-30 00:30:34 +000020 libs: ["org.apache.http.legacy.stubs.system"],
Yoonsung Nama3ff4242021-04-06 16:57:27 +020021
allenwtsu743d6692021-02-03 14:34:04 +080022 certificate: "platform",
Brad Ebingerd47a2172021-02-08 20:15:32 +000023 privileged: true,
24 product_specific: true,
allenwtsu743d6692021-02-03 14:34:04 +080025
26 sdk_version: "system_current",
Paul Duffinec277b72024-04-26 12:58:22 +010027 min_sdk_version: "31",
Cole Faust0b9450f2023-12-20 11:57:10 -080028 required: ["privapp-permissions-com.google.android.sample.rcsclient.xml"],
29 lint: {
30 baseline_filename: "lint-baseline.xml",
31 },
Brad Ebingerd47a2172021-02-08 20:15:32 +000032}
33
34prebuilt_etc {
35 name: "privapp-permissions-com.google.android.sample.rcsclient.xml",
36 src: "etc/permissions/privapp-permissions-com.google.android.sample.rcsclient.xml",
Cole Faust0b9450f2023-12-20 11:57:10 -080037 sub_dir: "permissions",
Brad Ebingerd47a2172021-02-08 20:15:32 +000038 product_specific: true,
allenwtsu743d6692021-02-03 14:34:04 +080039}