-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
55 lines (52 loc) · 1.52 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package {
// http://go/android-license-faq
default_applicable_licenses: ["Android-Apache-2.0"],
}
android_app {
name: "DeskClock",
resource_dirs: ["res"],
sdk_version: "current",
overrides: ["AlarmClock"],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
srcs: [
"src/**/*.java",
"gen/**/*.java",
],
product_specific: true,
static_libs: [
"androidx.annotation_annotation",
"androidx.collection_collection",
"androidx.arch.core_core-common",
"androidx.lifecycle_lifecycle-common",
"com.google.android.material_material",
"androidx.lifecycle_lifecycle-runtime",
"androidx.transition_transition",
"androidx.core_core",
"androidx.media_media",
"androidx.preference_preference",
"androidx.appcompat_appcompat",
"androidx.gridlayout_gridlayout",
"androidx.recyclerview_recyclerview",
"androidx-constraintlayout_constraintlayout"
],
required: [
"com.android.deskclock_allowlist",
"default-permissions-com.android.deskclock"
],
}
prebuilt_etc {
name: "com.android.deskclock_allowlist",
product_specific: true,
sub_dir: "sysconfig",
src: "com.android.deskclock_allowlist.xml",
filename_from_src: true,
}
prebuilt_etc {
name: "default-permissions-com.android.deskclock",
product_specific: true,
sub_dir: "default-permissions",
src: "default-permissions-com.android.deskclock.xml",
filename_from_src: true,
}