Files
frameworks_base/packages/SettingsProvider/Android.bp
lesl e5b9a55655 Softap: Let ap band changed notification to config changed.
The softap supports more features which related hardware.
The config store from cloud will meet the convert will not only for band
but also for others config. Revise the code to make it more general.

PS: UI wording change will in another CL# which need to discuss with
UX designer.

Bug: 142752869
Test: Manual test, restore from cloud to see if notification show or
not. And check the log.

Change-Id: I279e62841d4b14d3ba5b6792bc289c0adb8a223d
2020-01-19 22:31:55 +08:00

58 lines
1.7 KiB
Plaintext

android_app {
name: "SettingsProvider",
resource_dirs: ["res"],
srcs: [
"src/**/*.java",
"src/com/android/providers/settings/EventLogTags.logtags",
],
libs: [
"telephony-common",
"ims-common",
"unsupportedappusage",
],
static_libs: [
"junit",
"SettingsLibDisplayDensityUtils",
],
platform_apis: true,
certificate: "platform",
privileged: true,
}
android_test {
name: "SettingsProviderTest",
// Note we statically link several classes to do some unit tests. It's not accessible otherwise
// because this test is not an instrumentation test. (because the target runs in the system process.)
srcs: [
"test/**/*.java",
"src/android/provider/settings/backup/*",
"src/android/provider/settings/validators/*",
"src/com/android/providers/settings/SettingsBackupAgent.java",
"src/com/android/providers/settings/SettingsState.java",
"src/com/android/providers/settings/SettingsHelper.java",
"src/com/android/providers/settings/WifiSoftApConfigChangedNotifier.java",
],
static_libs: [
"androidx.test.rules",
"SettingsLibDisplayDensityUtils",
"platform-test-annotations",
"truth-prebuilt",
],
libs: [
"android.test.base",
"android.test.mock",
"unsupportedappusage",
],
resource_dirs: ["res"],
aaptflags: [
"--auto-add-overlay",
"--extra-packages",
"com.android.providers.settings",
],
platform_apis: true,
certificate: "platform",
test_suites: ["device-tests"],
manifest: "test/AndroidManifest.xml",
test_config: "test/AndroidTest.xml",
}