-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
56 lines (48 loc) · 1.53 KB
/
Android.bp
File metadata and controls
56 lines (48 loc) · 1.53 KB
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
56
android_app {
name: "EdgeLauncher",
manifest: "AndroidManifest.xml",
srcs: [
"src/**/*.kt",
],
resource_dirs: ["res"],
certificate: "platform",
platform_apis: true,
privileged: true,
system_ext_specific: true,
optimize: {
enabled: true,
},
static_libs: [
"androidx.activity_activity-compose",
"androidx.core_core-ktx",
"androidx.appcompat_appcompat",
"com.google.android.material_material",
"androidx.compose.animation_animation-core",
"androidx.compose.animation_animation-graphics",
"androidx.compose.foundation_foundation",
"androidx.compose.material3_material3",
"androidx.compose.material3_material3-window-size-class",
"androidx.compose.material_material-icons-core",
"androidx.compose.material_material-icons-extended",
"androidx.compose.runtime_runtime",
"androidx.compose.ui_ui",
"kotlinx-coroutines-core",
"ax_kt",
],
plugins: ["androidx.room_room-compiler-plugin"],
kotlincflags: [
"-Xjvm-default=all",
"-Xopt-in=kotlin.RequiresOptIn",
"-P plugin:androidx.compose.compiler.plugins.kotlin:sourceInformation=true",
],
required: [
"privapp_whitelist_com.android.edgelauncher",
],
}
prebuilt_etc {
name: "privapp_whitelist_com.android.edgelauncher",
system_ext_specific: true,
sub_dir: "permissions",
src: "privapp_whitelist_com.android.edgelauncher.xml",
filename_from_src: true,
}