You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
4 months ago
|
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,
|
||
|
}
|