1
2
3package {
4    default_applicable_licenses: [
5        "packages_services_Telephony_testapps_TestRcsApp_aosp_test_rcsclient_license",
6    ],
7}
8
9// Added automatically by a large-scale-change
10// See: http://go/android-license-faq
11license {
12    name: "packages_services_Telephony_testapps_TestRcsApp_aosp_test_rcsclient_license",
13    visibility: [":__subpackages__"],
14    license_kinds: [
15        "SPDX-license-identifier-Apache-2.0",
16    ],
17    license_text: [
18        "LICENSE",
19    ],
20}
21
22android_library {
23    name: "aosp_test_rcs_client_base",
24
25    srcs: ["src/com/android/libraries/rcs/**/*.java"],
26
27    static_libs: [
28        "androidx.annotation_annotation",
29        "androidx.concurrent_concurrent-futures",
30        "guava",
31        "nist-sip",
32    ],
33
34    libs: [
35        "auto_value_annotations",
36        "org.apache.http.legacy",
37    ],
38
39    plugins: [
40        "auto_value_plugin",
41    ],
42
43    sdk_version: "system_current",
44    min_sdk_version: "30",
45}
46