-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAndroid.bp
More file actions
43 lines (36 loc) · 832 Bytes
/
Android.bp
File metadata and controls
43 lines (36 loc) · 832 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
android_app {
name: "OmniJaws",
manifest: "app/src/main/AndroidManifest.xml",
platform_apis: true,
system_ext_specific: true,
srcs: [
"app/src/main/**/*.java",
],
resource_dirs: [
"app/src/main/res/",
],
static_libs: [
"androidx.core_core",
"androidx.preference_preference",
"com.google.android.material_material",
"SettingsLib",
],
optimize: {
enabled: false,
},
required: [
"default_permissions_org.omnirom.omnijaws",
],
optional_uses_libs: [
"org.apache.http.legacy",
"androidx.window.extensions",
"androidx.window.sidecar"
],
}
prebuilt_etc {
name: "default_permissions_org.omnirom.omnijaws",
system_ext_specific: true,
src: "default_permissions_org.omnirom.omnijaws.xml",
sub_dir: "default-permissions",
filename_from_src: true,
}