-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
76 lines (74 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
android_library {
name: "SettingsGoogle-core",
platform_apis: true,
use_resource_processor: true,
static_libs: [
"Settings-core",
"androidx.datastore_datastore",
"androidx.datastore_datastore-core",
"androidx.datastore_datastore-preferences",
"androidx.datastore_datastore-core-okio",
"androidx.datastore_datastore-preferences-core",
"androidx.datastore_datastore-preferences-external-protobuf",
"androidx.datastore_datastore-preferences-rxjava2",
"com.google.android.material_material",
"android.hidl.base-V1.0-java",
"android.frameworks.stats-V1-java",
"SettingsGoogle-lib",
"googlebattery-lib",
"androidx.room_room-runtime",
"androidx.fragment_fragment-ktx",
"androidx.lifecycle_lifecycle-runtime-ktx",
"kotlinx_coroutines_reactive",
"kotlinx_coroutines_rx2",
"rxjava",
"SpaLib",
],
plugins: [
"SettingsLibMetadata-processor",
"androidx.room_room-compiler-plugin",
"androidx.appsearch_appsearch-compiler-plugin",
],
resource_dirs: [
"res",
"res-aosp",
],
}
android_app {
name: "SettingsGoogle",
defaults: [
"platform_app_defaults",
"SettingsLib-search-defaults",
"SettingsLintDefaults",
"SpaPrivilegedLib-defaults",
],
platform_apis: true,
certificate: "platform",
system_ext_specific: true,
privileged: true,
required: [
"privapp_whitelist_com.android.settings",
"settings-platform-compat-config",
],
static_libs: ["SettingsGoogle-core"],
uses_libs: ["org.apache.http.legacy"],
use_resource_processor: true,
resource_dirs: [],
optimize: {
enabled: true,
optimize: true,
shrink: true,
shrink_resources: false,
optimized_shrink_resources: false,
ignore_warnings: false,
proguard_compatibility: true,
proguard_flags_files: [
":Settings_proguard_flags",
"proguard.flags",
],
},
overrides: [
"Settings",
],
manifest: "AndroidManifest.xml",
}