-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroid.bp
More file actions
30 lines (28 loc) · 753 Bytes
/
Copy pathAndroid.bp
File metadata and controls
30 lines (28 loc) · 753 Bytes
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: "Traceur",
platform_apis: true,
certificate: "platform",
required: ["notify_traceur.sh"],
optimize: {
proguard_flags_files: ["proguard.flags"],
},
static_libs: [
"androidx.leanback_leanback",
"androidx.leanback_leanback-preference",
"androidx.legacy_legacy-preference-v14",
"androidx.appcompat_appcompat",
"androidx.preference_preference",
"androidx.recyclerview_recyclerview",
"androidx.legacy_legacy-support-v4",
],
resource_dirs: ["res"],
srcs: ["src/**/*.java"],
init_rc: ["traceur.rc"],
defaults: [
"SettingsLibDefaults",
],
}
sh_binary {
name: "notify_traceur.sh",
src: "notify_traceur.sh",
}