summaryrefslogtreecommitdiff
path: root/testapps/TestRcsApp/TestApp/Android.bp
blob: cda7d170dccd74a04c23b139d7b36c4bdcf82b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "packages_services_Telephony_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["packages_services_Telephony_license"],
}

android_app {
    name: "TestRcsApp",

    srcs: [
        "src/**/*.java",
    ],

    static_libs: [
        "androidx-constraintlayout_constraintlayout",
        "aosp_test_rcs_client_base",
        "androidx.appcompat_appcompat",
        "libphonenumber-platform"
    ],

    libs: ["org.apache.http.legacy"],

    certificate: "platform",
    privileged: true,
    product_specific: true,

    sdk_version: "system_current",
    min_sdk_version: "30",
    required: ["privapp-permissions-com.google.android.sample.rcsclient.xml"]
}

prebuilt_etc {
    name: "privapp-permissions-com.google.android.sample.rcsclient.xml",
    src: "etc/permissions/privapp-permissions-com.google.android.sample.rcsclient.xml",
    sub_dir:"permissions",
    product_specific: true,
}