• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
10android_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",
21        "libphonenumber-platform"
22    ],
23
24    libs: ["org.apache.http.legacy"],
25
26    certificate: "platform",
27    privileged: true,
28    product_specific: true,
29
30    sdk_version: "system_current",
31    min_sdk_version: "30",
32    required: ["privapp-permissions-com.google.android.sample.rcsclient.xml"]
33}
34
35prebuilt_etc {
36    name: "privapp-permissions-com.google.android.sample.rcsclient.xml",
37    src: "etc/permissions/privapp-permissions-com.google.android.sample.rcsclient.xml",
38    sub_dir:"permissions",
39    product_specific: true,
40}
41