-
Notifications
You must be signed in to change notification settings - Fork 6
/
Android.bp
37 lines (31 loc) · 893 Bytes
/
Android.bp
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
android_app {
name: "Contacts",
srcs: [
"src/**/*.java",
"src-bind/**/*.java",
],
static_libs: [
"com.android.phone.common-lib",
"com.google.android.material_material",
"androidx.transition_transition",
"androidx.legacy_legacy-support-v13",
"androidx.appcompat_appcompat",
"androidx.cardview_cardview",
"androidx.recyclerview_recyclerview",
"androidx.palette_palette",
"androidx.legacy_legacy-support-v4",
"android-common",
"com.android.vcard",
"guava",
"libphonenumber",
],
certificate: "shared",
product_specific: true,
privileged: true,
required: ["privapp_whitelist_com.android.contacts"],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
sdk_version: "system_current",
min_sdk_version: "21",
}