blob: 4496a8ef645cf99987f25d14a54dec57e15311a8 [file] [log] [blame]
Bob Badour1fcc3d72021-02-12 18:21:19 -08001package {
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_services_Telephony_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["packages_services_Telephony_license"],
8}
9
allenwtsu743d6692021-02-03 14:34:04 +080010android_app {
11 name: "TestRcsApp",
12
13 srcs: [
14 "src/**/*.java",
15 ],
16
17 static_libs: [
18 "androidx-constraintlayout_constraintlayout",
19 "aosp_test_rcs_client_base",
20 "androidx.appcompat_appcompat",
Brad Ebingera0bec862021-02-24 01:08:36 +000021 "libphonenumber-platform"
allenwtsu743d6692021-02-03 14:34:04 +080022 ],
Brad Ebingerd47a2172021-02-08 20:15:32 +000023
allenwtsu743d6692021-02-03 14:34:04 +080024 certificate: "platform",
Brad Ebingerd47a2172021-02-08 20:15:32 +000025 privileged: true,
26 product_specific: true,
allenwtsu743d6692021-02-03 14:34:04 +080027
28 sdk_version: "system_current",
29 min_sdk_version: "30",
Brad Ebingerd47a2172021-02-08 20:15:32 +000030 required: ["privapp-permissions-com.google.android.sample.rcsclient.xml"]
31}
32
33prebuilt_etc {
34 name: "privapp-permissions-com.google.android.sample.rcsclient.xml",
35 src: "etc/permissions/privapp-permissions-com.google.android.sample.rcsclient.xml",
36 sub_dir:"permissions",
37 product_specific: true,
allenwtsu743d6692021-02-03 14:34:04 +080038}