This ensures that any compact changes defined in settings work correctly at runtime. Include the config in the system_ext partition rather than system to avoid breaking rules about where we're allowed to put things. Test: m Test: Check compat changes appear in dev settings UI. Change-Id: I4a6dc6bfcc5de1f68e97faf905ee94b35bde5d11
81 lines
1.9 KiB
Plaintext
81 lines
1.9 KiB
Plaintext
java_library {
|
|
name: "settings-logtags",
|
|
srcs: ["src/**/*.logtags"],
|
|
static_libs: ["WifiTrackerLib"],
|
|
}
|
|
|
|
// Build the Settings APK
|
|
android_library {
|
|
name: "Settings-core",
|
|
platform_apis: true,
|
|
defaults: [
|
|
"SettingsLibDefaults",
|
|
"SettingsLib-search-defaults",
|
|
],
|
|
|
|
srcs: ["src/**/*.java"],
|
|
|
|
static_libs: [
|
|
"androidx-constraintlayout_constraintlayout",
|
|
"androidx.slice_slice-builders",
|
|
"androidx.slice_slice-core",
|
|
"androidx.slice_slice-view",
|
|
"androidx.core_core",
|
|
"androidx.appcompat_appcompat",
|
|
"androidx.cardview_cardview",
|
|
"androidx.preference_preference",
|
|
"androidx.recyclerview_recyclerview",
|
|
"com.google.android.material_material",
|
|
"setupcompat",
|
|
"setupdesign",
|
|
"androidx-constraintlayout_constraintlayout-solver",
|
|
"androidx.lifecycle_lifecycle-runtime",
|
|
"androidx.lifecycle_lifecycle-extensions",
|
|
"guava",
|
|
"jsr305",
|
|
"settings-contextual-card-protos-lite",
|
|
"settings-log-bridge-protos-lite",
|
|
"contextualcards",
|
|
"settings-logtags",
|
|
"zxing-core-1.7",
|
|
],
|
|
|
|
libs: [
|
|
"telephony-common",
|
|
"ims-common",
|
|
"app-compat-annotations",
|
|
],
|
|
|
|
plugins: [
|
|
"compat-changeid-annotation-processor",
|
|
]
|
|
}
|
|
|
|
platform_compat_config {
|
|
name: "settings-platform-compat-config",
|
|
src: ":Settings-core",
|
|
system_ext_specific: true,
|
|
}
|
|
|
|
android_app {
|
|
name: "Settings",
|
|
platform_apis: true,
|
|
certificate: "platform",
|
|
system_ext_specific: true,
|
|
privileged: true,
|
|
required: [
|
|
"privapp_whitelist_com.android.settings",
|
|
"settings-platform-compat-config",
|
|
],
|
|
static_libs: ["Settings-core"],
|
|
resource_dirs: [],
|
|
optimize: {
|
|
proguard_flags_files: ["proguard.flags"],
|
|
},
|
|
}
|
|
|
|
android_library_import {
|
|
name: "contextualcards",
|
|
aars: ["libs/contextualcards.aar"],
|
|
}
|