Bob Badour | 1fcc3d7 | 2021-02-12 18:21:19 -0800 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq |
Bob Badour | b963ff5 | 2022-01-27 19:26:46 -0800 | [diff] [blame] | 3 | default_applicable_licenses: ["Android-Apache-2.0"], |
Bob Badour | 1fcc3d7 | 2021-02-12 18:21:19 -0800 | [diff] [blame] | 4 | } |
| 5 | |
allenwtsu | 743d669 | 2021-02-03 14:34:04 +0800 | [diff] [blame] | 6 | android_app { |
| 7 | name: "TestRcsApp", |
| 8 | |
| 9 | srcs: [ |
| 10 | "src/**/*.java", |
| 11 | ], |
| 12 | |
| 13 | static_libs: [ |
| 14 | "androidx-constraintlayout_constraintlayout", |
| 15 | "aosp_test_rcs_client_base", |
| 16 | "androidx.appcompat_appcompat", |
Cole Faust | 0b9450f | 2023-12-20 11:57:10 -0800 | [diff] [blame] | 17 | "libphonenumber-platform", |
allenwtsu | 743d669 | 2021-02-03 14:34:04 +0800 | [diff] [blame] | 18 | ], |
Brad Ebinger | d47a217 | 2021-02-08 20:15:32 +0000 | [diff] [blame] | 19 | |
Jihoon Kang | f078bf2 | 2024-08-30 00:30:34 +0000 | [diff] [blame^] | 20 | libs: ["org.apache.http.legacy.stubs.system"], |
Yoonsung Nam | a3ff424 | 2021-04-06 16:57:27 +0200 | [diff] [blame] | 21 | |
allenwtsu | 743d669 | 2021-02-03 14:34:04 +0800 | [diff] [blame] | 22 | certificate: "platform", |
Brad Ebinger | d47a217 | 2021-02-08 20:15:32 +0000 | [diff] [blame] | 23 | privileged: true, |
| 24 | product_specific: true, |
allenwtsu | 743d669 | 2021-02-03 14:34:04 +0800 | [diff] [blame] | 25 | |
| 26 | sdk_version: "system_current", |
Paul Duffin | ec277b7 | 2024-04-26 12:58:22 +0100 | [diff] [blame] | 27 | min_sdk_version: "31", |
Cole Faust | 0b9450f | 2023-12-20 11:57:10 -0800 | [diff] [blame] | 28 | required: ["privapp-permissions-com.google.android.sample.rcsclient.xml"], |
| 29 | lint: { |
| 30 | baseline_filename: "lint-baseline.xml", |
| 31 | }, |
Brad Ebinger | d47a217 | 2021-02-08 20:15:32 +0000 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | prebuilt_etc { |
| 35 | name: "privapp-permissions-com.google.android.sample.rcsclient.xml", |
| 36 | src: "etc/permissions/privapp-permissions-com.google.android.sample.rcsclient.xml", |
Cole Faust | 0b9450f | 2023-12-20 11:57:10 -0800 | [diff] [blame] | 37 | sub_dir: "permissions", |
Brad Ebinger | d47a217 | 2021-02-08 20:15:32 +0000 | [diff] [blame] | 38 | product_specific: true, |
allenwtsu | 743d669 | 2021-02-03 14:34:04 +0800 | [diff] [blame] | 39 | } |