-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
29 lines (29 loc) · 936 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
android_app {
name: "DeskClock",
resource_dirs: ["res"],
sdk_version: "current",
overrides: ["AlarmClock"],
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.percentlayout_percentlayout",
"androidx.transition_transition",
"androidx.core_core",
"androidx.legacy_legacy-support-core-ui",
"androidx.media_media",
"androidx.legacy_legacy-support-v13",
"androidx.preference_preference",
"androidx.appcompat_appcompat",
"androidx.gridlayout_gridlayout",
"androidx.recyclerview_recyclerview",
],
}