1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6android_library {
7    name: "aosp_test_rcs_client_base",
8
9    srcs: ["src/com/android/libraries/rcs/**/*.java"],
10
11    static_libs: [
12        "androidx.annotation_annotation",
13        "androidx.concurrent_concurrent-futures",
14        "guava",
15        "nist-sip",
16    ],
17
18    libs: [
19        "auto_value_annotations",
20        "org.apache.http.legacy",
21    ],
22
23    plugins: [
24        "auto_value_plugin",
25    ],
26
27    sdk_version: "system_current",
28    min_sdk_version: "31",
29    lint: {
30        baseline_filename: "lint-baseline.xml",
31    },
32}
33