Log using PlatformCompat framework if the app tried to deep-link into the app-specific screen for managing SAW permission. Bug: 146327570 Bug: 135920175 Test: 1. adb shell am start -a android.settings.action.MANAGE_OVERLAY_PERMISSION -d package:com.foo.bar 2. adb logcat -s -v color CompatibilityChangeReporter:* 3. Verify compat change id reported 135920175 and state LOGGED Change-Id: I1d6c571d524d70c11156aeea27a8800d2a0ba42b
77 lines
1.9 KiB
Plaintext
77 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",
|
|
}
|
|
|
|
android_app {
|
|
name: "Settings",
|
|
platform_apis: true,
|
|
certificate: "platform",
|
|
system_ext_specific: true,
|
|
privileged: true,
|
|
required: ["privapp_whitelist_com.android.settings"],
|
|
static_libs: ["Settings-core"],
|
|
resource_dirs: [],
|
|
optimize: {
|
|
proguard_flags_files: ["proguard.flags"],
|
|
},
|
|
}
|
|
|
|
android_library_import {
|
|
name: "contextualcards",
|
|
aars: ["libs/contextualcards.aar"],
|
|
}
|