fix: 引入Settings的Module
@ -75,9 +75,12 @@ dependencies {
|
||||
implementation libs.car.ui.lib
|
||||
implementation files('../libs/car-apps-common.jar')
|
||||
implementation files('../libs/car-setup-wizard-lib-utils.jar')
|
||||
implementation files('../libs/car-admin-ui-lib.jar')
|
||||
// implementation files('../libs/car-qc-lib.jar')
|
||||
implementation project(':car-qc-lib')
|
||||
implementation project(':car-admin-ui-lib')
|
||||
implementation(project(':WifiTrackerLib'))
|
||||
implementation(project(':SettingsLib'))
|
||||
implementation(project(':SettingsLib:search'))
|
||||
implementation libs.constraintlayout.solver
|
||||
// implementation libs.androidx.core.ktx
|
||||
// implementation libs.androidx.appcompat
|
||||
|
@ -22,6 +22,9 @@ public class Main {
|
||||
"SettingsLib/RestrictedLockUtils/res",
|
||||
"SettingsLib/SearchWidget/res",
|
||||
"CarSettings/res",
|
||||
"Settings/res",
|
||||
"Settings/res-export",
|
||||
"Settings/res-product",
|
||||
};
|
||||
|
||||
for (String name : arr) {
|
||||
|
3
Settings/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.idea/
|
||||
*.code-workspace
|
||||
*.iml
|
169
Settings/Android.bp
Normal file
@ -0,0 +1,169 @@
|
||||
package {
|
||||
default_team: "trendy_team_android_settings_app",
|
||||
default_applicable_licenses: ["packages_apps_Settings_license"],
|
||||
}
|
||||
|
||||
// Added automatically by a large-scale-change
|
||||
// See: http://go/android-license-faq
|
||||
license {
|
||||
name: "packages_apps_Settings_license",
|
||||
visibility: [":__subpackages__"],
|
||||
license_kinds: [
|
||||
"SPDX-license-identifier-Apache-2.0",
|
||||
],
|
||||
license_text: [
|
||||
"NOTICE",
|
||||
],
|
||||
}
|
||||
|
||||
java_library {
|
||||
name: "settings-logtags",
|
||||
srcs: ["src/**/*.logtags"],
|
||||
}
|
||||
|
||||
genrule {
|
||||
name: "statslog-settings-java-gen",
|
||||
tools: ["stats-log-api-gen"],
|
||||
cmd: "$(location stats-log-api-gen) --java $(out) --module settings" +
|
||||
" --javaPackage com.android.settings.core.instrumentation --javaClass SettingsStatsLog",
|
||||
out: ["com/android/settings/core/instrumentation/SettingsStatsLog.java"],
|
||||
}
|
||||
|
||||
java_library {
|
||||
name: "statslog-settings",
|
||||
srcs: [
|
||||
":statslog-settings-java-gen",
|
||||
],
|
||||
}
|
||||
|
||||
java_library {
|
||||
name: "Settings-change-ids",
|
||||
srcs: ["src/com/android/settings/ChangeIds.java"],
|
||||
libs: [
|
||||
"app-compat-annotations",
|
||||
],
|
||||
}
|
||||
|
||||
android_library {
|
||||
name: "Settings-core",
|
||||
defaults: [
|
||||
"SettingsLib-search-defaults",
|
||||
"SettingsLintDefaults",
|
||||
"SpaPrivilegedLib-defaults",
|
||||
],
|
||||
|
||||
srcs: [
|
||||
"src/**/*.java",
|
||||
"src/**/*.kt",
|
||||
],
|
||||
exclude_srcs: [
|
||||
"src/com/android/settings/biometrics/fingerprint2/lib/**/*.kt",
|
||||
],
|
||||
use_resource_processor: true,
|
||||
resource_dirs: [
|
||||
"res",
|
||||
"res-export", // for external usage
|
||||
"res-product",
|
||||
],
|
||||
static_libs: [
|
||||
// External dependencies
|
||||
"androidx.navigation_navigation-fragment-ktx",
|
||||
"androidx.window_window-java",
|
||||
"gson",
|
||||
"guava",
|
||||
|
||||
// Android internal dependencies
|
||||
"BiometricsSharedLib",
|
||||
"SystemUIUnfoldLib",
|
||||
"WifiTrackerLib",
|
||||
"android.hardware.dumpstate-V1-java",
|
||||
"android.hardware.dumpstate-V1.0-java",
|
||||
"android.hardware.dumpstate-V1.1-java",
|
||||
"android.view.accessibility.flags-aconfig-java",
|
||||
"com_android_server_accessibility_flags_lib",
|
||||
"net-utils-framework-common",
|
||||
"notification_flags_lib",
|
||||
"securebox",
|
||||
|
||||
// Settings dependencies
|
||||
"FingerprintManagerInteractor",
|
||||
"MediaDrmSettingsFlagsLib",
|
||||
"Settings-change-ids",
|
||||
"SettingsLib",
|
||||
"SettingsLibDataStore",
|
||||
"SettingsLibActivityEmbedding",
|
||||
"aconfig_settings_flags_lib",
|
||||
"accessibility_settings_flags_lib",
|
||||
"app-usage-event-protos-lite",
|
||||
"battery-event-protos-lite",
|
||||
"battery-usage-slot-protos-lite",
|
||||
"contextualcards",
|
||||
"development_settings_flag_lib",
|
||||
"factory_reset_flags_lib",
|
||||
"fuelgauge-log-protos-lite",
|
||||
"fuelgauge-usage-state-protos-lite",
|
||||
"power-anomaly-event-protos-lite",
|
||||
"settings-contextual-card-protos-lite",
|
||||
"settings-log-bridge-protos-lite",
|
||||
"settings-logtags",
|
||||
"settings-telephony-protos-lite",
|
||||
"statslog-settings",
|
||||
"androidx.test.rules",
|
||||
"telephony_flags_core_java_lib",
|
||||
"setupdesign-lottie-loading-layout",
|
||||
],
|
||||
|
||||
plugins: ["androidx.room_room-compiler-plugin"],
|
||||
|
||||
errorprone: {
|
||||
extra_check_modules: ["//external/nullaway:nullaway_plugin"],
|
||||
javacflags: [
|
||||
"-XepOpt:NullAway:AnnotatedPackages=com.android.settings",
|
||||
],
|
||||
},
|
||||
|
||||
libs: [
|
||||
"telephony-common",
|
||||
"ims-common",
|
||||
],
|
||||
}
|
||||
|
||||
platform_compat_config {
|
||||
name: "settings-platform-compat-config",
|
||||
src: ":Settings-change-ids",
|
||||
system_ext_specific: true,
|
||||
}
|
||||
|
||||
// Build the Settings APK
|
||||
android_app {
|
||||
name: "Settings",
|
||||
defaults: [
|
||||
"platform_app_defaults",
|
||||
"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: ["Settings-core"],
|
||||
uses_libs: ["org.apache.http.legacy"],
|
||||
use_resource_processor: true,
|
||||
resource_dirs: [],
|
||||
optimize: {
|
||||
proguard_flags_files: ["proguard.flags"],
|
||||
},
|
||||
}
|
||||
|
||||
android_library_import {
|
||||
name: "contextualcards",
|
||||
aars: ["libs/contextualcards.aar"],
|
||||
}
|
||||
|
||||
filegroup {
|
||||
name: "Settings_proguard_flags",
|
||||
srcs: ["proguard.flags"],
|
||||
}
|
5137
Settings/AndroidManifest.xml
Normal file
55
Settings/CleanSpec.mk
Normal file
@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2007 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
# If you don't need to do a full clean build but would like to touch
|
||||
# a file or delete some intermediate files, add a clean step to the end
|
||||
# of the list. These steps will only be run once, if they haven't been
|
||||
# run before.
|
||||
#
|
||||
# E.g.:
|
||||
# $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
|
||||
# $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
|
||||
#
|
||||
# Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with
|
||||
# files that are missing or have been moved.
|
||||
#
|
||||
# Use $(PRODUCT_OUT) to get to the "out/target/product/blah/" directory.
|
||||
# Use $(OUT_DIR) to refer to the "out" directory.
|
||||
#
|
||||
# If you need to re-do something that's already mentioned, just copy
|
||||
# the command and add it to the bottom of the list. E.g., if a change
|
||||
# that you made last week required touching a file and a change you
|
||||
# made today requires touching the same file, just copy the old
|
||||
# touch step and add it to the end of the list.
|
||||
#
|
||||
# ************************************************
|
||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
||||
# ************************************************
|
||||
|
||||
# For example:
|
||||
#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates)
|
||||
#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates)
|
||||
#$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f)
|
||||
#$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*)
|
||||
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/Settings_intermediates)
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/Settings_intermediates)
|
||||
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/priv-app/Settings)
|
||||
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/product/priv-app/Settings)
|
||||
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/product/priv-app/Settings)
|
||||
|
||||
# ************************************************
|
||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
||||
# ************************************************
|
190
Settings/NOTICE
Normal file
@ -0,0 +1,190 @@
|
||||
|
||||
Copyright (c) 2005-2008, The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
28
Settings/OWNERS
Normal file
@ -0,0 +1,28 @@
|
||||
# Bug component: 27091
|
||||
# Use this reviewer by default.
|
||||
android-settings-core-eng+gerrit@google.com
|
||||
|
||||
# Android Settings Core
|
||||
cantol@google.com
|
||||
cechkahn@google.com
|
||||
chiujason@google.com
|
||||
dswliu@google.com
|
||||
edgarwang@google.com
|
||||
jiannan@google.com
|
||||
millchen@google.com
|
||||
sunnyshao@google.com
|
||||
|
||||
# Android Settings extended
|
||||
chaohuiw@google.com
|
||||
songferngwang@google.com
|
||||
tomhsu@google.com
|
||||
wengsu@google.com
|
||||
ykhung@google.com
|
||||
|
||||
# Emergency only
|
||||
cipson@google.com
|
||||
hanxu@google.com
|
||||
yangfan@google.com
|
||||
|
||||
# Exempt resource files (because they are in a flat directory and too hard to manage via OWNERS)
|
||||
per-file res*/**=*
|
6
Settings/PREUPLOAD.cfg
Normal file
@ -0,0 +1,6 @@
|
||||
[Hook Scripts]
|
||||
checkcolor_hook = ${REPO_ROOT}/prebuilts/checkcolor/checkcolor.py -p .
|
||||
|
||||
checkstyle_hook = ${REPO_ROOT}/prebuilts/checkstyle/checkstyle.py --sha ${PREUPLOAD_COMMIT}
|
||||
|
||||
robolectric_hook = ${REPO_ROOT}/packages/apps/Settings/tests/robotests/new_tests_hook.sh ${REPO_PROJECT}
|
48
Settings/TEST_MAPPING
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"presubmit": [
|
||||
{
|
||||
"name": "SettingsSpaUnitTests"
|
||||
},
|
||||
{
|
||||
"name": "SettingsUnitTests",
|
||||
"options": [
|
||||
{
|
||||
"include-filter": "com.android.settings.biometrics"
|
||||
},
|
||||
{
|
||||
"include-filter": "com.android.settings.biometrics2"
|
||||
},
|
||||
{
|
||||
"include-filter": "com.android.settings.password"
|
||||
},
|
||||
{
|
||||
"include-filter": "com.android.settings.safetycenter"
|
||||
},
|
||||
{
|
||||
"include-filter": "com.android.settings.security"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"postsubmit": [
|
||||
{
|
||||
"name": "SettingsUnitTests",
|
||||
"options": [
|
||||
{
|
||||
"exclude-annotation": "androidx.test.filters.FlakyTest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "SettingsUITests",
|
||||
"options": [
|
||||
{
|
||||
"exclude-annotation": "org.junit.Ignore"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "SettingsPerfTests"
|
||||
}
|
||||
]
|
||||
}
|
68
Settings/aconfig/Android.bp
Normal file
@ -0,0 +1,68 @@
|
||||
package {
|
||||
default_team: "trendy_team_android_settings_app",
|
||||
default_applicable_licenses: ["packages_apps_Settings_license"],
|
||||
}
|
||||
|
||||
aconfig_declarations {
|
||||
name: "aconfig_settings_flags",
|
||||
package: "com.android.settings.flags",
|
||||
container: "system",
|
||||
srcs: [
|
||||
"*.aconfig",
|
||||
],
|
||||
}
|
||||
|
||||
java_aconfig_library {
|
||||
name: "aconfig_settings_flags_lib",
|
||||
aconfig_declarations: "aconfig_settings_flags",
|
||||
}
|
||||
|
||||
aconfig_declarations {
|
||||
name: "factory_reset_flags",
|
||||
package: "com.android.settings.factory_reset",
|
||||
container: "system",
|
||||
srcs: ["factory_reset/*.aconfig"],
|
||||
}
|
||||
|
||||
java_aconfig_library {
|
||||
name: "factory_reset_flags_lib",
|
||||
aconfig_declarations: "factory_reset_flags",
|
||||
}
|
||||
|
||||
aconfig_declarations {
|
||||
name: "media_drm_flags",
|
||||
package: "com.android.settings.media_drm",
|
||||
container: "system",
|
||||
srcs: ["media_drm/*.aconfig"],
|
||||
}
|
||||
|
||||
java_aconfig_library {
|
||||
name: "MediaDrmSettingsFlagsLib",
|
||||
aconfig_declarations: "media_drm_flags",
|
||||
}
|
||||
|
||||
aconfig_declarations {
|
||||
name: "accessibility_flags",
|
||||
package: "com.android.settings.accessibility",
|
||||
container: "system",
|
||||
srcs: ["accessibility/*.aconfig"],
|
||||
}
|
||||
|
||||
java_aconfig_library {
|
||||
name: "accessibility_settings_flags_lib",
|
||||
aconfig_declarations: "accessibility_flags",
|
||||
}
|
||||
|
||||
aconfig_declarations {
|
||||
name: "development_settings_flags",
|
||||
package: "com.android.settings.development",
|
||||
container: "system",
|
||||
srcs: [
|
||||
"development/**/*.aconfig",
|
||||
],
|
||||
}
|
||||
|
||||
java_aconfig_library {
|
||||
name: "development_settings_flag_lib",
|
||||
aconfig_declarations: "development_settings_flags",
|
||||
}
|
3
Settings/aconfig/OWNERS
Normal file
@ -0,0 +1,3 @@
|
||||
per-file settings_accessibility_flag_declarations.aconfig = file:/src/com/android/settings/accessibility/OWNERS
|
||||
per-file settings_biometrics_integration_declarations.aconfig = file:platform/vendor/unbundled_google/packages/SettingsGoogle:/future/biometrics/OWNERS
|
||||
|
1
Settings/aconfig/accessibility/OWNERS
Normal file
@ -0,0 +1 @@
|
||||
include /src/com/android/settings/accessibility/OWNERS
|
39
Settings/aconfig/accessibility/accessibility_flags.aconfig
Normal file
@ -0,0 +1,39 @@
|
||||
package: "com.android.settings.accessibility"
|
||||
container: "system"
|
||||
|
||||
# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors.
|
||||
|
||||
flag {
|
||||
name: "edit_shortcuts_in_full_screen"
|
||||
namespace: "accessibility"
|
||||
description: "Show the edit shorcuts screen in full screen, since the shortcut options are increasing."
|
||||
bug: "300302098"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "enable_hearing_aid_preset_control"
|
||||
namespace: "accessibility"
|
||||
description: "Allows users to control hearing aid preset in the Bluetooth device details page."
|
||||
bug: "300015207"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "enable_hearing_aid_volume_offset_control"
|
||||
namespace: "accessibility"
|
||||
description: "Allows users to control hearing aid volume offset in the Bluetooth device details page."
|
||||
bug: "301198830"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "remove_qs_tooltip_in_suw"
|
||||
namespace: "accessibility"
|
||||
description: "Don't show quick settings tooltip in SUW, since the user can't use quick settings there."
|
||||
bug: "294560581"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "enable_color_contrast_control"
|
||||
namespace: "accessibility"
|
||||
description: "Allows users to control color contrast in the Accessibility settings page."
|
||||
bug: "246577325"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.development"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "deprecate_list_activity"
|
||||
namespace: "android_settings"
|
||||
description: "Feature flag for deprecating ListActivity in Settings"
|
||||
bug: "299195099"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.factory_reset"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_factory_reset_wizard"
|
||||
namespace: "wallet_integration"
|
||||
description: "Gates whether to enable factory reset wizard."
|
||||
bug: "301283840"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.media_drm"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "force_l3_enabled"
|
||||
namespace: "media_drm"
|
||||
description: "Feature flag of forcing L3"
|
||||
bug: "301669353"
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
# NOTE: Don't add new accessibility flags here, since the package name doesn't follow
|
||||
# the best practice for setting's feature flag go/settings-trunk-stable
|
||||
|
||||
# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors.
|
||||
|
||||
# NOTE: All Settings flags share the same Flags class, so prefix our
|
||||
# flags with 'accessibility' to prevent naming collision.
|
||||
|
||||
flag {
|
||||
name: "accessibility_customize_text_reading_preview"
|
||||
namespace: "accessibility"
|
||||
description: "Pulls the accessibility text-reading preview pages from a config."
|
||||
bug: "307481249"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "accessibility_show_app_info_button"
|
||||
namespace: "accessibility"
|
||||
description: "Shows an 'app info' button on non-framework a11y Service and Activity pages."
|
||||
bug: "277378550"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "separate_accessibility_vibration_settings_fragments"
|
||||
namespace: "accessibility"
|
||||
description: "Splits VibrationSettings into two fragments, one per XML resource"
|
||||
bug: "289967175"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "new_hearing_device_pairing_page"
|
||||
namespace: "accessibility"
|
||||
description: "New hearing device pairing page with extra MFi+ASHA filtering"
|
||||
bug: "307473972"
|
||||
}
|
||||
|
@ -0,0 +1,16 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "biometric_settings_provider"
|
||||
namespace: "biometrics_framework"
|
||||
description: "This flag enables or disables the BiometricSettingsProvider"
|
||||
bug: "303595205"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "fingerprint_v2_enrollment"
|
||||
namespace: "biometrics_framework"
|
||||
description: "This flag enables or disables the Fingerprint v2 enrollment"
|
||||
bug: "295206723"
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "sfps_enroll_refinement"
|
||||
namespace: "biometrics_integration"
|
||||
description: "This flag controls whether the sfps pause enrollment feature should be enabled"
|
||||
bug: "288155127"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "udfps_enroll_calibration"
|
||||
namespace: "biometrics_integration"
|
||||
description: "This flag controls whether the fps enroll calibration feature should be enabled"
|
||||
bug: "301226085"
|
||||
}
|
||||
|
16
Settings/aconfig/settings_bluetooth_declarations.aconfig
Normal file
@ -0,0 +1,16 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_offload_bluetooth_operations_to_background_thread"
|
||||
namespace: "pixel_cross_device_control"
|
||||
description: "Gates whether to offload bluetooth operations to background thread"
|
||||
bug: "305636727"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "enable_bluetooth_profile_toggle_visibility_checker"
|
||||
namespace: "pixel_cross_device_control"
|
||||
description: "Gates whether to enable checker for bluetooth profile toggle visibility"
|
||||
bug: "321178209"
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_subsequent_pair_settings_integration"
|
||||
namespace: "pixel_cross_device_control"
|
||||
description: "Gates whether to enable subsequent pair Settings integration."
|
||||
bug: "299405720"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "enable_auth_challenge_for_usb_preferences"
|
||||
namespace: "safety_center"
|
||||
description: "Gates whether to require an auth challenge for changing USB preferences"
|
||||
bug: "317367746"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "enable_saved_devices_order_by_recency"
|
||||
namespace: "pixel_cross_device_control"
|
||||
description: "Order the saved bluetooth devices by most recently connected."
|
||||
bug: "306160434"
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors.
|
||||
|
||||
# NOTE: All Settings flags share the same Flags class, so prefix our
|
||||
# flags with 'development' to prevent naming collision.
|
||||
|
||||
flag {
|
||||
name: "development_game_default_frame_rate"
|
||||
namespace: "game"
|
||||
description: "This flag guards the new behavior with the addition of Game Default Frame Rate feature."
|
||||
bug: "286084594"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "development_hdr_sdr_ratio"
|
||||
namespace: "core_graphics"
|
||||
description: "Shows hdr/sdr dev opton on the development options page from aconfig"
|
||||
bug: "291863102"
|
||||
}
|
10
Settings/aconfig/settings_display_flag_declarations.aconfig
Normal file
@ -0,0 +1,10 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "protect_screen_timeout_with_auth"
|
||||
namespace: "safety_center"
|
||||
description: "Require an auth challenge for increasing screen timeout."
|
||||
bug: "315937886"
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "new_apn_page_enabled"
|
||||
namespace: "settings_experience"
|
||||
description: "Change to the new APN page."
|
||||
bug: "298906796"
|
||||
}
|
23
Settings/aconfig/settings_flag_declarations.aconfig
Normal file
@ -0,0 +1,23 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "show_factory_reset_cancel_button"
|
||||
namespace: "android_settings"
|
||||
description: "This flag controls whether to show a Cancel button when factory reset"
|
||||
bug: "300634367"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "mainline_module_explicit_intent"
|
||||
namespace: "android_settings"
|
||||
description: "Enabling will provide an explicit package name for Intent to update mainline modules"
|
||||
bug: "278987474"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "app_archiving"
|
||||
namespace: "android_settings"
|
||||
description: "Feature flag to enable the archiving feature."
|
||||
bug: "323164382"
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "terms_of_address_enabled"
|
||||
namespace: "globalintl"
|
||||
description: "Feature flag for Terms of Address"
|
||||
bug: "297798866"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "locale_notification_enabled"
|
||||
namespace: "globalintl"
|
||||
description: "Feature flag for locale notification"
|
||||
bug: "301380610"
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "dedupe_dnd_settings_channels"
|
||||
namespace: "systemui"
|
||||
description: "Controls adding group names to channel names in the DND>Apps settings page"
|
||||
bug: "294333850"
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_sound_backup"
|
||||
namespace: "onboarding_experience"
|
||||
description: "Feature flag for B&R sound settings."
|
||||
bug: "278975761"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_volume_plus_quick_settings"
|
||||
namespace: "pixel_cross_device_control"
|
||||
description: "Gates whether to enable VolumePlus quick settings panel."
|
||||
bug: "309052662"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_perform_backup_tasks_in_settings"
|
||||
namespace: "backstage_power"
|
||||
description: "Enable the Perform Backup Tasks screen in Settings"
|
||||
bug: "320563660"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "protect_lock_after_timeout_with_auth"
|
||||
namespace: "safety_center"
|
||||
description: "Require an auth challenge to open Lock after timeout page"
|
||||
bug: "315937886"
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "remove_key_hide_enable_2g"
|
||||
namespace: "cellular_security"
|
||||
description: "Stop honoring CarrierConfigManager.KEY_HIDE_ENABLE_2G. Allow 2G toggle cannot be hidden from users by carriers."
|
||||
bug: "300248708"
|
||||
}
|
||||
|
||||
flag {
|
||||
name: "is_dual_sim_onboarding_enabled"
|
||||
namespace: "settings_experience"
|
||||
description: "Control the Dual SIM onobarding feature"
|
||||
bug: "298898436"
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package: "com.android.settings.flags"
|
||||
container: "system"
|
||||
|
||||
flag {
|
||||
name: "enable_voice_activation_apps_in_settings"
|
||||
namespace: "permissions"
|
||||
description: "Enable voice activation apps in Settings"
|
||||
bug: "303727896"
|
||||
}
|
116
Settings/build.gradle
Normal file
@ -0,0 +1,116 @@
|
||||
plugins {
|
||||
alias(libs.plugins.android.application)
|
||||
alias(libs.plugins.kotlin.android)
|
||||
}
|
||||
|
||||
//preBuild {
|
||||
// doLast {
|
||||
// try {
|
||||
// def rootProjectName = rootProject.name.replace(" ", "_")
|
||||
// def projectName = project.name.replace(" ", "_")
|
||||
// def iml_path1 = "$rootProject.rootDir\\.idea\\modules\\" + projectName + "\\" + rootProjectName + "." + projectName + ".iml"
|
||||
// def iml_path0 = "$rootProject.rootDir\\.idea\\modules\\" + projectName + "\\" + rootProjectName + "." + projectName + ".main.iml"
|
||||
// def imlFileList = [file(iml_path0), file(iml_path1)]
|
||||
// for (imlFile in imlFileList) {
|
||||
// if (imlFile.exists()) {
|
||||
// def parsedXml = (new XmlParser()).parse(imlFile)
|
||||
// def jdkNode = parsedXml.component[1].orderEntry.find { it.'@type' == 'jdk' }
|
||||
// def sdkString = jdkNode.'@jdkName'
|
||||
// parsedXml.component[1].remove(jdkNode)
|
||||
// new Node(parsedXml.component[1], 'orderEntry', ['type': 'jdk', 'jdkName': sdkString, 'jdkType': 'Android SDK'])
|
||||
// groovy.xml.XmlUtil.serialize(parsedXml, new FileOutputStream(imlFile))
|
||||
// }
|
||||
// }
|
||||
// } catch (FileNotFoundException e) {
|
||||
// e.printStackTrace()
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
android {
|
||||
namespace 'com.android.settings'
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.android.car.settings"
|
||||
minSdk 31
|
||||
targetSdk 34
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
sourceSets.main {
|
||||
manifest.srcFile 'AndroidManifest.xml'
|
||||
java.srcDirs = ['src']
|
||||
res.srcDirs = ['res', 'res-export', 'res-product']
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = '17'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation libs.navigation.fragment.ktx
|
||||
implementation libs.window.window.java
|
||||
implementation libs.gson
|
||||
implementation libs.guava
|
||||
|
||||
implementation files('../libs/BiometricsSharedLib.jar')
|
||||
implementation files('../libs/SystemUIUnfoldLib.jar')
|
||||
implementation project(':WifiTrackerLib')
|
||||
implementation files('../libs/android.hardware.dumpstate-V1-java.jar')
|
||||
implementation files('../libs/android.hardware.dumpstate-V1.0-java.jar')
|
||||
implementation files('../libs/android.hardware.dumpstate-V1.1-java.jar')
|
||||
implementation files('../libs/com_android_server_accessibility_flags_lib.jar')
|
||||
implementation files('../libs/net-utils-framework-common.jar')
|
||||
implementation files('../libs/notification_flags_lib.jar')
|
||||
implementation files('../libs/securebox.jar')
|
||||
implementation files('./libs/contextualcards.aar')
|
||||
|
||||
implementation(project(':SettingsLib'))
|
||||
implementation(project(':SettingsLib:search'))
|
||||
implementation project(':SettingsLib:ActionBarShadow')
|
||||
implementation project(':SettingsLib:ActionButtonsPreference')
|
||||
implementation project(':SettingsLib:AdaptiveIcon')
|
||||
implementation project(':SettingsLib:AppPreference')
|
||||
implementation project(':SettingsLib:BannerMessagePreference')
|
||||
implementation project(':SettingsLib:BarChartPreference')
|
||||
implementation project(':SettingsLib:ButtonPreference')
|
||||
implementation project(':SettingsLib:CollapsingToolbarBaseActivity')
|
||||
implementation project(':SettingsLib:Color')
|
||||
implementation project(':SettingsLib:DeviceStateRotationLock')
|
||||
implementation project(':SettingsLib:DisplayUtils')
|
||||
implementation project(':SettingsLib:EmergencyNumber')
|
||||
implementation project(':SettingsLib:EntityHeaderWidgets')
|
||||
implementation project(':SettingsLib:FooterPreference')
|
||||
implementation project(':SettingsLib:HelpUtils')
|
||||
implementation project(':SettingsLib:IllustrationPreference')
|
||||
implementation project(':SettingsLib:LayoutPreference')
|
||||
implementation project(':SettingsLib:MainSwitchPreference')
|
||||
implementation project(':SettingsLib:ProfileSelector')
|
||||
implementation project(':SettingsLib:ProgressBar')
|
||||
implementation project(':SettingsLib:RestrictedLockUtils')
|
||||
implementation project(':SettingsLib:SearchWidget')
|
||||
implementation project(':SettingsLib:SelectorWithWidgetPreference')
|
||||
implementation project(':SettingsLib:SettingsSpinner')
|
||||
implementation project(':SettingsLib:SettingsTheme')
|
||||
implementation project(':SettingsLib:SettingsTransition')
|
||||
implementation project(':SettingsLib:Tile')
|
||||
implementation project(':SettingsLib:TopIntroPreference')
|
||||
implementation project(':SettingsLib:TwoTargetPreference')
|
||||
implementation project(':SettingsLib:UsageProgressBarPreference')
|
||||
implementation project(':SettingsLib:Utils')
|
||||
}
|
6676
Settings/color-check-baseline.xml
Normal file
BIN
Settings/libs/contextualcards.aar
Normal file
67
Settings/proguard.flags
Normal file
@ -0,0 +1,67 @@
|
||||
# This is a configuration file for ProGuard.
|
||||
# http://proguard.sourceforge.net/index.html#manual/usage.html
|
||||
|
||||
# Some tests use thenThrow from Mockito which require information on
|
||||
# checked exceptions.
|
||||
-keepattributes Exceptions
|
||||
|
||||
# Keep all Fragments in this package, which are used by reflection.
|
||||
-keep public class com.android.settings*.** extends androidx.fragment.app.Fragment
|
||||
|
||||
# Keep all preference controllers needed by slice and DashboardFragment.
|
||||
-keep class * extends com.android.settings.core.BasePreferenceController {
|
||||
*;
|
||||
}
|
||||
|
||||
-keep class * extends com.android.settings.core.TogglePreferenceController {
|
||||
*;
|
||||
}
|
||||
|
||||
# We want to keep methods in Activity that could be used in the XML attribute onClick.
|
||||
-keepclassmembers class com.android.settings*.** extends android.app.Activity {
|
||||
public void *(android.view.View);
|
||||
public void *(android.view.MenuItem);
|
||||
}
|
||||
|
||||
# Keep setters in Views so that animations can still work.
|
||||
-keep public class com.android.settings*.** extends android.view.View {
|
||||
public <init>(android.content.Context);
|
||||
public <init>(android.content.Context, android.util.AttributeSet);
|
||||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
||||
|
||||
void set*(***);
|
||||
*** get*();
|
||||
}
|
||||
|
||||
# Keep classes that may be inflated from XML.
|
||||
-keepclasseswithmembers class com.android.settings*.** {
|
||||
public <init>(android.content.Context, android.util.AttributeSet);
|
||||
}
|
||||
-keepclasseswithmembers class com.android.settings*.** {
|
||||
public <init>(android.content.Context, android.util.AttributeSet, int);
|
||||
}
|
||||
-keepclasseswithmembers class com.android.settings*.** {
|
||||
public <init>(android.content.Context, android.util.AttributeSet, int, int);
|
||||
}
|
||||
|
||||
# Keep specific fields used via reflection.
|
||||
-keepclassmembers class * {
|
||||
public static ** SEARCH_INDEX_DATA_PROVIDER;
|
||||
public static ** SUMMARY_PROVIDER_FACTORY;
|
||||
}
|
||||
-keep class androidx.core.app.CoreComponentFactory
|
||||
|
||||
# Keep classes that implements CustomSliceable, which are used by reflection.
|
||||
-keepclasseswithmembers class * implements com.android.settings.slices.CustomSliceable {
|
||||
public <init>(android.content.Context);
|
||||
}
|
||||
|
||||
# Keep classes that extends SliceBackgroundWorker, which are used by reflection.
|
||||
-keepclasseswithmembers class * extends com.android.settings.slices.SliceBackgroundWorker {
|
||||
public <init>(android.content.Context, android.net.Uri);
|
||||
}
|
||||
|
||||
# Keep WM Jetpack classes and callbacks
|
||||
-keep class androidx.window.extensions.** { *; }
|
||||
-dontwarn androidx.window.extensions.**
|
||||
-keep class androidx.window.** { *; }
|
44
Settings/protos/Android.bp
Normal file
@ -0,0 +1,44 @@
|
||||
package {
|
||||
default_team: "trendy_team_android_settings_app",
|
||||
// See: http://go/android-license-faq
|
||||
// A large-scale-change added 'default_applicable_licenses' to import
|
||||
// all of the 'license_kinds' from "packages_apps_Settings_license"
|
||||
// to get the below license kinds:
|
||||
// SPDX-license-identifier-Apache-2.0
|
||||
default_applicable_licenses: ["packages_apps_Settings_license"],
|
||||
}
|
||||
|
||||
java_library_static {
|
||||
name: "settings-contextual-card-protos-lite",
|
||||
host_supported: true,
|
||||
proto: {
|
||||
type: "lite",
|
||||
},
|
||||
srcs: ["contextual_card_list.proto"],
|
||||
}
|
||||
|
||||
java_library_static {
|
||||
name: "settings-log-bridge-protos-lite",
|
||||
host_supported: true,
|
||||
proto: {
|
||||
type: "lite",
|
||||
},
|
||||
srcs: ["settings_log_bridge.proto"],
|
||||
}
|
||||
|
||||
java_library_static {
|
||||
name: "settings-telephony-protos-lite",
|
||||
host_supported: true,
|
||||
proto: {
|
||||
type: "lite",
|
||||
},
|
||||
srcs: ["network_mode_choices.proto"],
|
||||
}
|
||||
|
||||
java_library {
|
||||
name: "fuelgauge-log-protos-lite",
|
||||
proto: {
|
||||
type: "lite",
|
||||
},
|
||||
srcs: ["fuelgauge_log.proto"],
|
||||
}
|
34
Settings/protos/contextual_card_list.proto
Normal file
@ -0,0 +1,34 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package com.android.settings.intelligence;
|
||||
option java_outer_classname = "ContextualCardProto";
|
||||
|
||||
message ContextualCardList {
|
||||
repeated ContextualCard card = 1;
|
||||
}
|
||||
|
||||
message ContextualCard {
|
||||
|
||||
/**
|
||||
* The category of a card: this is a hint for how a card should be collected,
|
||||
* ranked, and presented
|
||||
*/
|
||||
enum Category {
|
||||
DEFAULT = 0;
|
||||
SUGGESTION = 1;
|
||||
POSSIBLE = 2;
|
||||
IMPORTANT = 3;
|
||||
DEFERRED_SETUP = 5;
|
||||
STICKY = 6;
|
||||
}
|
||||
|
||||
/** Slice uri of the contextual card */
|
||||
optional string sliceUri = 1;
|
||||
|
||||
/** Name of the card. It should be identical in every app */
|
||||
optional string cardName = 3;
|
||||
|
||||
optional Category card_category = 4;
|
||||
|
||||
optional double card_score = 5;
|
||||
}
|
52
Settings/protos/fuelgauge_log.proto
Normal file
@ -0,0 +1,52 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package com.android.settings.intelligence;
|
||||
option java_multiple_files = true;
|
||||
option java_package = "com.android.settings.fuelgauge";
|
||||
option java_outer_classname = "FuelgaugeLogProto";
|
||||
|
||||
// Store history of setting optimize mode
|
||||
message BatteryOptimizeHistoricalLog {
|
||||
repeated BatteryOptimizeHistoricalLogEntry log_entry = 1;
|
||||
}
|
||||
|
||||
message BatteryOptimizeHistoricalLogEntry {
|
||||
// The action to set optimize mode
|
||||
enum Action {
|
||||
UNKNOWN = 0;
|
||||
LEAVE = 1;
|
||||
APPLY = 2;
|
||||
RESET = 3;
|
||||
RESTORE = 4;
|
||||
BACKUP = 5;
|
||||
FORCE_RESET = 6;
|
||||
}
|
||||
|
||||
optional string package_name = 1;
|
||||
optional Action action = 2;
|
||||
optional string action_description = 3;
|
||||
optional int64 timestamp = 4;
|
||||
}
|
||||
|
||||
|
||||
// Store history of battery usage periodic job
|
||||
message BatteryUsageHistoricalLog {
|
||||
repeated BatteryUsageHistoricalLogEntry log_entry = 1;
|
||||
}
|
||||
|
||||
message BatteryUsageHistoricalLogEntry {
|
||||
// The action to record battery usage job event
|
||||
enum Action {
|
||||
UNKNOWN = 0;
|
||||
SCHEDULE_JOB = 1;
|
||||
EXECUTE_JOB = 2;
|
||||
RECHECK_JOB = 3;
|
||||
FETCH_USAGE_DATA = 4;
|
||||
INSERT_USAGE_DATA = 5;
|
||||
TIME_UPDATED = 6;
|
||||
}
|
||||
|
||||
optional int64 timestamp = 1;
|
||||
optional Action action = 2;
|
||||
optional string action_description = 3;
|
||||
}
|
130
Settings/protos/network_mode_choices.proto
Normal file
@ -0,0 +1,130 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package com.android.settings.intelligence;
|
||||
option java_multiple_files = false;
|
||||
option java_package = "com.android.settings.network.telephony";
|
||||
option java_outer_classname = "NetworkModeChoicesProto";
|
||||
|
||||
// EnabledNetworks is a list which tries to categorized the entries of popup menu
|
||||
// based on carrier network types available to the end user.
|
||||
|
||||
// Next tag: 15
|
||||
// TODO(b/268145152): rename the ENABLED_NETWORKS for good readability.
|
||||
enum EnabledNetworks {
|
||||
// No EnabledNetworks specified.
|
||||
ENABLED_NETWORKS_UNSPECIFIED = 0;
|
||||
|
||||
// For the case where either unsupported or unable to categorized properly.
|
||||
ENABLED_NETWORKS_UNKNOWN = 1;
|
||||
|
||||
// For the case where CDMA is supported and LTE is not prioritized over
|
||||
// CDMA (LTE, 3G, 1x, global).
|
||||
ENABLED_NETWORKS_CDMA_CHOICES = 2;
|
||||
|
||||
// For the case where CDMA is supported and LTE is not available.
|
||||
// CDMA (3G, 1x)
|
||||
ENABLED_NETWORKS_CDMA_NO_LTE_CHOICES = 3;
|
||||
|
||||
// For the case where CDMA is supported and LTE is available.
|
||||
// CDMA (LTE, Global)
|
||||
ENABLED_NETWORKS_CDMA_ONLY_LTE_CHOICES = 4;
|
||||
|
||||
// For the case where TDSCDMA is primary network type.
|
||||
// TDSCDMA (LTE, 3G, 2G)
|
||||
ENABLED_NETWORKS_TDSCDMA_CHOICES = 5;
|
||||
|
||||
// For the case where GSM and LTE options are removed from the menu.
|
||||
// (3G)
|
||||
ENABLED_NETWORKS_EXCEPT_GSM_LTE_CHOICES = 6;
|
||||
|
||||
// For the case where GSM option are removed from the menu. The wording of LTE is '4G'.
|
||||
// (4G, 3G)
|
||||
ENABLED_NETWORKS_EXCEPT_GSM_4G_CHOICES = 7;
|
||||
|
||||
// For the case where GSM option are removed from the menu. The wording of LTE is 'LTE'.
|
||||
// (LTE, 3G)
|
||||
ENABLED_NETWORKS_EXCEPT_GSM_CHOICES = 8;
|
||||
|
||||
// For the case where LTE is disabled.
|
||||
// (3G, 3G)
|
||||
ENABLED_NETWORKS_EXCEPT_LTE_CHOICES = 9;
|
||||
|
||||
// For the case where GSM related carrier with 4G/LTE supported. The wording of LTE is '4G'.
|
||||
// (2G, 3G, 4G)
|
||||
ENABLED_NETWORKS_4G_CHOICES = 10;
|
||||
|
||||
// For the case where GSM related carrier with 4G/LTE supported. The wording of LTE is 'LTE'.
|
||||
// (2G, 3G, LTE)
|
||||
ENABLED_NETWORKS_CHOICES = 11;
|
||||
|
||||
// For the case where world mode is enabled.
|
||||
// ("Global", "LTE / CDMA", "LTE / GSM / UMTS")
|
||||
PREFERRED_NETWORK_MODE_CHOICES_WORLD_MODE = 12;
|
||||
|
||||
// For the case where GSM, 3G options are removed from the menu. The wording of LTE is '4G'.
|
||||
// (4G)
|
||||
ENABLED_NETWORKS_4G_CHOICES_EXCEPT_GSM_3G = 13;
|
||||
|
||||
// For the case where GSM and 3G are removed from the menu. The wording of LTE is 'LTE'.
|
||||
// (LTE)
|
||||
ENABLED_NETWORKS_CHOICES_EXCEPT_GSM_3G = 14;
|
||||
}
|
||||
|
||||
// A request for popup menu.
|
||||
|
||||
// Next tag: 4
|
||||
message UiOptions {
|
||||
// Mapping to popup menu categories.
|
||||
required EnabledNetworks type = 1;
|
||||
|
||||
// Resource which provides a list of network type values for this popup menu.
|
||||
required int32 choices = 2;
|
||||
|
||||
// Presentation format of a continuous popop menu entries.
|
||||
// Each format may contains any numbers of popop menu entries.
|
||||
|
||||
// Next tag: 12
|
||||
enum PresentFormat {
|
||||
|
||||
// No PresentFormat specified.
|
||||
PRESENT_FORMAT_UNSPECIFIED = 0;
|
||||
|
||||
// Append a CDMA 1x network option into popup menu.
|
||||
add1xEntry = 1;
|
||||
|
||||
// Append a 2G network option into popup menu.
|
||||
add2gEntry = 2;
|
||||
|
||||
// Append a 3G network option into popup menu.
|
||||
add3gEntry = 3;
|
||||
|
||||
// Append a global mode option into popup menu.
|
||||
addGlobalEntry = 4;
|
||||
|
||||
// Append a CDMA/LTE global mode option into popup menu.
|
||||
addWorldModeCdmaEntry = 5;
|
||||
|
||||
// Append a GSM/LTE global mode option into popup menu.
|
||||
addWorldModeGsmEntry = 6;
|
||||
|
||||
// Append a 4G network option into popup menu.
|
||||
add4gEntry = 7;
|
||||
|
||||
// Append a LTE network option into popup menu.
|
||||
addLteEntry = 8;
|
||||
|
||||
// Append a 5G network option into popup menu.
|
||||
add5gEntry = 9;
|
||||
|
||||
// Append both 5G and 4G network options into popup menu.
|
||||
add5gAnd4gEntry = 10;
|
||||
|
||||
// Append both 5G and LTE network options into popup menu.
|
||||
add5gAndLteEntry = 11;
|
||||
}
|
||||
|
||||
// Format of popup menu entries.
|
||||
// The length of this entry need to be less than the network type values
|
||||
// referenced from "choices" field.
|
||||
repeated PresentFormat format = 3;
|
||||
}
|
37
Settings/protos/settings_log_bridge.proto
Normal file
@ -0,0 +1,37 @@
|
||||
syntax = "proto2";
|
||||
|
||||
package com.android.settings.intelligence;
|
||||
option java_outer_classname = "LogProto";
|
||||
|
||||
message SettingsLog {
|
||||
/**
|
||||
* Where this SettingsUIChange event comes from. For example, if
|
||||
* it's a PAGE_VISIBLE event, where the page is opened from.
|
||||
*/
|
||||
optional int32 attribution = 1;
|
||||
|
||||
/**
|
||||
* What the UI action is.
|
||||
*/
|
||||
optional int32 action = 2;
|
||||
|
||||
/**
|
||||
* Where the action is happening
|
||||
*/
|
||||
optional int32 page_id = 3;
|
||||
|
||||
/**
|
||||
* What preference changed in this event.
|
||||
*/
|
||||
optional string changed_preference_key = 4;
|
||||
|
||||
/**
|
||||
* The new value of the changed preference.
|
||||
*/
|
||||
optional int32 changed_preference_int_value = 5;
|
||||
|
||||
/**
|
||||
* The timestamp of a log event
|
||||
*/
|
||||
optional string timestamp = 6;
|
||||
}
|
4
Settings/res-export/.README.md
Normal file
@ -0,0 +1,4 @@
|
||||
### Resources exported for external usage
|
||||
|
||||
This folder contains the resources which is **not** used by Settings, but is
|
||||
exported for external usage by other apps.
|
25
Settings/res-export/drawable/ic_find_device_disabled.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FFF44336"
|
||||
android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13C19,5.13 15.87,2 12,2zM7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.88 -2.88,7.19 -5,9.88C9.92,16.21 7,11.85 7,9zM11,13h2v2h-2V13zM13,6h-2v5h2V6z"/>
|
||||
</vector>
|
25
Settings/res-export/drawable/ic_find_device_enabled.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FF43A047"
|
||||
android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13C19,5.13 15.87,2 12,2zM7,9c0,-2.76 2.24,-5 5,-5s5,2.24 5,5c0,2.88 -2.88,7.19 -5,9.88C9.92,16.21 7,11.85 7,9zM14.5,9c0,1.38 -1.12,2.5 -2.5,2.5S9.5,10.38 9.5,9s1.12,-2.5 2.5,-2.5S14.5,7.62 14.5,9z"/>
|
||||
</vector>
|
25
Settings/res-export/drawable/ic_ota_update_available.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FFD93025"
|
||||
android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7l0,-1h10V21zM17,18H7V6h10V18zM7,4V3h10v1H7zM16,12.5l-4,4l-4,-4l1.41,-1.41L11,12.67V8.5V8h2v0.5v4.17l1.59,-1.59L16,12.5z"/>
|
||||
</vector>
|
25
Settings/res-export/drawable/ic_ota_update_current.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FF1E8E3E"
|
||||
android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7l0,-1h10V21zM17,18H7V6h10V18zM7,4V3h10v1H7zM11.14,16l-3.84,-3.84l1.41,-1.42l2.43,2.42l4.16,-4.16l1.42,1.41L11.14,16z"/>
|
||||
</vector>
|
25
Settings/res-export/drawable/ic_ota_update_none.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FFD93025"
|
||||
android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7l0,-1h10V21zM17,18H7V6h10V18zM7,4V3h10v1H7zM11,15h2v2h-2V15zM13,8h-2v5h2V8z"/>
|
||||
</vector>
|
25
Settings/res-export/drawable/ic_ota_update_stale.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FFD93025"
|
||||
android:pathData="M17,1.01L7,1C5.9,1 5,1.9 5,3v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2V3C19,1.9 18.1,1.01 17,1.01zM17,21H7l0,-1h10V21zM17,18H7V6h10V18zM7,4V3h10v1H7zM11,15h2v2h-2V15zM13,8h-2v5h2V8z"/>
|
||||
</vector>
|
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FFEF6C00"
|
||||
android:pathData="M12,4.24l6,3v4.1c0,3.9 -2.55,7.5 -6,8.59c-3.45,-1.09 -6,-4.7 -6,-8.59v-4.1L12,4.24M12,2L4,6v5.33c0,4.93 3.41,9.55 8,10.67c4.59,-1.12 8,-5.73 8,-10.67V6L12,2L12,2zM11,15h2v2h-2V15zM13,8h-2v5h2V8z"/>
|
||||
</vector>
|
25
Settings/res-export/drawable/ic_package_verifier_enabled.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="#FF43A047"
|
||||
android:pathData="M11.14,16l-3.84,-3.84l1.41,-1.42l2.43,2.42l4.16,-4.16l1.42,1.41L11.14,16zM12,4.24l6,3v4.1c0,3.9 -2.55,7.5 -6,8.59c-3.45,-1.09 -6,-4.7 -6,-8.59v-4.1L12,4.24M12,2L4,6v5.33c0,4.93 3.41,9.55 8,10.67c4.59,-1.12 8,-5.73 8,-10.67V6L12,2L12,2z"/>
|
||||
</vector>
|
@ -0,0 +1,27 @@
|
||||
<!--
|
||||
Copyright (C) 2019 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF1E8E3E"
|
||||
android:pathData="M17,18H7v-2.67l1.59,1.58L10,15.5l-3,-3l-1,-1l-4,4l1.41,1.42L5,15.33v4.17V20v1c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-7h-2V18zM17,21H7v-1h10V21z"/>
|
||||
<path
|
||||
android:fillColor="#FF1E8E3E"
|
||||
android:pathData="M7,6h10v2.67l-1.59,-1.58L14,8.5l4,4l4,-4l-1.41,-1.42L19,8.67V4.5V4V3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1C5.9,1 5,1.9 5,3v7h2V6zM7,3h10v1H7V3z"/>
|
||||
</vector>
|
@ -0,0 +1,27 @@
|
||||
<!--
|
||||
Copyright (C) 2019 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FFD93025"
|
||||
android:pathData="M17,18H7v-2.67l1.59,1.58L10,15.5l-3,-3l-1,-1l-4,4l1.41,1.42L5,15.33v4.17V20v1c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2v-7h-2V18zM17,21H7v-1h10V21z"/>
|
||||
<path
|
||||
android:fillColor="#FFD93025"
|
||||
android:pathData="M7,6h10v2.67l-1.59,-1.58L14,8.5l4,4l4,-4l-1.41,-1.42L19,8.67V4.5V4V3c0,-1.1 -0.9,-1.99 -2,-1.99L7,1C5.9,1 5,1.9 5,3v7h2V6zM7,3h10v1H7V3z"/>
|
||||
</vector>
|
23
Settings/res-export/values/bools.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
**
|
||||
** Copyright 2022, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<resources>
|
||||
<!-- Referenced outside of Settings to confirm bug fixed - bug involved multiple
|
||||
pending intents with difference only in intent extras, which doesn't work. -->
|
||||
<bool name="config_isSafetyCenterLockScreenPendingIntentFixed">true</bool>
|
||||
</resources>
|
362
Settings/res-product/values-zh-rCN/strings.xml
Normal file
@ -0,0 +1,362 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2022 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="bluetooth_disconnect_all_profiles" product="default" msgid="5845431621920557637">"您的手机将断开与<xliff:g id="DEVICE_NAME">%1$s</xliff:g>的连接。"</string>
|
||||
|
||||
|
||||
<string name="bluetooth_footer_mac_message" product="default" msgid="1640339352473051542">"手机的蓝牙地址:<xliff:g id="BLUETOOTH_MAC_ADDRESS">%1$s</xliff:g>"</string>
|
||||
|
||||
|
||||
|
||||
<string name="bluetooth_ask_discovery" product="default" msgid="3947027393224406367">"<xliff:g id="APP_NAME">%1$s</xliff:g>想让其他蓝牙设备在 <xliff:g id="TIMEOUT">%2$d</xliff:g> 秒内可检测到您的手机。"</string>
|
||||
|
||||
<string name="bluetooth_ask_discovery_no_name" product="default" msgid="5164413774312648842">"某个应用想让其他蓝牙设备在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内可检测到您的手机。"</string>
|
||||
|
||||
<string name="bluetooth_ask_lasting_discovery" product="default" msgid="5844129004156080891">"<xliff:g id="APP_NAME">%1$s</xliff:g>想让其他蓝牙设备检测到您的手机。您可以稍后在“蓝牙”设置中更改此设置。"</string>
|
||||
|
||||
<string name="bluetooth_ask_lasting_discovery_no_name" product="default" msgid="7909547303183236140">"某个应用想让其他蓝牙设备检测到您的手机。您可以稍后在“蓝牙”设置中更改此设置。"</string>
|
||||
|
||||
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="1018495685727482700">"<xliff:g id="APP_NAME">%1$s</xliff:g>请求开启蓝牙,以便其他设备在 <xliff:g id="TIMEOUT">%2$d</xliff:g> 秒内可检测到您的手机。"</string>
|
||||
|
||||
<string name="bluetooth_ask_enablement_and_discovery_no_name" product="default" msgid="4847493437698663706">"某个应用请求开启蓝牙,以便其他设备在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内可检测到您的手机。"</string>
|
||||
|
||||
<string name="bluetooth_ask_enablement_and_lasting_discovery" product="default" msgid="5169934906530139494">"<xliff:g id="APP_NAME">%1$s</xliff:g>请求开启蓝牙,以便其他设备可检测到您的手机。您可以稍后在“蓝牙”设置中更改此设置。"</string>
|
||||
|
||||
<string name="bluetooth_ask_enablement_and_lasting_discovery_no_name" product="default" msgid="6187216564831513193">"某个应用请求开启蓝牙,以便其他设备可检测到您的手机。您可以稍后在“蓝牙”设置中更改此设置。"</string>
|
||||
<string name="encryption_and_credential_settings_summary" product="default" msgid="3741475436042800617">"手机已加密"</string>
|
||||
<string name="not_encrypted_summary" product="default" msgid="330652312169527734">"手机未加密"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_education_message_accessibility" product="default" msgid="5795890116575517967"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_accessibility_expanded" product="default" msgid="2221590003018953090"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_message" product="default" msgid="847716059867943459">"通过您的面孔解锁手机、授权购买交易或登录应用。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_message_class3" product="default" msgid="6769683806920355534">"您可以用脸部解锁手机或在应用中验证自己的身份,例如在登录应用或批准购买交易时。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_consent_message_0" product="default" msgid="9086377203303858619">"允许您的孩子使用脸部解锁手机"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_consent_message_0_class3" product="default" msgid="5082581184108528408">"允许孩子使用脸部来解锁手机或验证自己的身份,例如在孩子登录应用、批准购买交易以及执行其他操作时。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_consent_message" product="default" msgid="3698558920963989416">"使用孩子的面孔解锁手机在安全性上可能不及使用安全系数高的图案或 PIN 码。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_info_looking" product="default" msgid="6532489273492650716"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_info_consent_looking" product="default" msgid="5741230674977518758"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_info_consent_less_secure" product="default" msgid="9108545933856688526"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_info_less_secure" product="default" msgid="8122442762352835480"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_info_gaze" product="default" msgid="762967108645858948"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_info_consent_gaze" product="default" msgid="4344820870381904205"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_how_message" product="default" msgid="8933211744361765188"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_how_consent_message" product="default" msgid="5091057232082857733"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_control_message" product="default" msgid="5648868145191337026"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_enroll_introduction_control_consent_message" product="default" msgid="6983939010814873996"></string>
|
||||
|
||||
|
||||
<string name="security_settings_face_settings_footer" product="default" msgid="3036403896485044957">"您可以通过刷脸来解锁手机或在应用内验证自己的身份,例如在登录账号或批准购买交易时。\n\n注意:\n一次只能设置一张面孔。如需添加另一张面孔,请先删除当前的面孔。\n\n目视手机可能会让手机意外解锁。\n\n如果有人将手机对准您的脸,手机可能会解锁。\n\n此外,长相与您非常相似的人,例如您的孪生兄弟姐妹,可能也能解锁您的手机。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_settings_footer_attention_not_supported" product="default" msgid="8266896471278294942">"您可以通过刷脸来解锁手机或在应用内验证身份,例如在登录账号或批准购买交易时。\n\n注意:\n一次只能设置 1 张面孔。如需添加其他面孔,请先删除当前的面孔。\n\n目视手机可能会让手机意外解锁。\n\n如果有人将手机对准您的脸,即使您闭上眼睛,手机可能也会解锁。\n\n此外,长相与您极为相似的人(例如您的孪生兄弟姐妹),或许也能解锁您的手机。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_settings_footer_class3" product="default" msgid="7050076350282827484">"您可以通过刷脸来解锁手机或验证身份,例如在登录应用或批准购买交易时。\n\n注意:\n一次只能设置 1 张面孔。如需添加其他面孔,请先删除当前的面孔。\n\n目视手机可能会让手机意外解锁。\n\n如果有人将手机对准您的脸,手机可能会解锁。\n\n此外,长相与您极为相似的人(例如您的孪生兄弟姐妹),或许也能解锁您的手机。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_face_settings_footer_class3_attention_not_supported" product="default" msgid="5512898803063743303">"您可以通过刷脸来解锁手机或验证身份,例如在登录应用或批准购买交易时。\n\n注意:\n一次只能设置 1 张面孔。如需添加其他面孔,请先删除当前的面孔。\n\n目视手机可能会让手机意外解锁。\n\n如果有人将手机对准您的脸,即使您闭上眼睛,手机可能也会解锁。\n\n此外,长相与您极为相似的人(例如您的孪生兄弟姐妹),或许也能解锁您的手机。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_enroll_introduction_v3_message" msgid="2145273491174234191">"您可以使用指纹来解锁 <xliff:g id="DEVICENAME">%s</xliff:g> 或验证身份,例如用于登录应用或批准购买交易"</string>
|
||||
<string name="security_settings_fingerprint_enroll_introduction_consent_message" product="default" msgid="5101253231118659496">"允许您的孩子使用指纹来解锁手机或验证自己的身份,例如在他们登录应用、批准购买交易以及执行其他操作时。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_1" product="default" msgid="8488497844109768268">"用指纹解锁手机的安全性可能不及高安全系数的图案或 PIN 码"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_3" product="default" msgid="3334689370761542152">"您使用 Pixel Imprint 时产生的图像会用来更新您的指纹模型。系统绝不会存储您用来创建指纹模型的图像,只会将指纹模型安全地存储在您的手机上,并且绝不会外泄。整个处理过程都是在您的手机上完成,安全有保证。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_consent_3" product="default" msgid="6804981319922169283">"在您的孩子使用 Pixel Imprint 时,系统会使用图像来更新其指纹模型。系统绝不会存储孩子用来创建指纹模型的图像,只会将指纹模型安全地存储在手机上,并且绝不会外泄。整个处理过程都是在手机上安全进行。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_4" product="default" msgid="1354488801088258040">"您可以随时在“设置”部分删除您的指纹图像和模型或关闭指纹解锁功能。指纹图像和模型会存储在手机上,直到您将其删除为止。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_consent_4" product="default" msgid="5003753461032107715">"您和您的孩子可以随时在“设置”部分删除其指纹图片和模型或关闭指纹解锁功能。指纹图片和模型会存储在手机上,直到被删除为止。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_5" product="default" msgid="6272159089589340181">"您的手机有可能会意外解锁,例如有人让手机触碰到您的手指时。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_consent_5" product="default" msgid="6556725426776167791">"您孩子的手机有可能会意外解锁,例如有人让您孩子的手机触碰到您孩子的手指时。"</string>
|
||||
|
||||
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_v2_home_screen_text" product="default" msgid="5376408603508393038">"您可以使用指纹来解锁手机或验证身份,例如用于登录应用"</string>
|
||||
|
||||
|
||||
<string name="biometric_settings_hand_back_to_guardian" product="default" msgid="2060265104488529949">"请将手机交回给您的家长"</string>
|
||||
|
||||
|
||||
<string name="lock_screen_intro_skip_dialog_text_frp" product="default" msgid="8367731653387033354">"系统将不会启用设备保护功能。如果您的手机丢失、被盗或被重置,您将无法防止他人使用此手机。"</string>
|
||||
|
||||
|
||||
<string name="lock_screen_intro_skip_dialog_text" product="default" msgid="8970036878014302990">"系统将不会启用设备保护功能。如果您的手机丢失或被盗,您将无法防止他人使用此手机。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_sfps_enroll_find_sensor_message" product="default" msgid="6862493139500275821">"指纹传感器在电源按钮上。电源按钮是一个扁平按钮,位于手机边缘凸起的音量按钮旁边。"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_enroll_finish_v2_message" product="default" msgid="8255422287180693200">"现在,您可以使用指纹来解锁手机或验证身份,例如用于登录应用或批准购买交易"</string>
|
||||
|
||||
|
||||
<string name="security_settings_fingerprint_enroll_finish_v2_add_fingerprint_message" product="default" msgid="3545300825124248359">"现在,您可以使用指纹来解锁手机或验证身份,例如用于登录应用或批准购买交易。\n\n如果希望在采用其他方式握持手机时也能更轻松地解锁,可以再添加一个指纹。"</string>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<string name="lock_screen_pin_skip_message" product="default" msgid="1488786078805713892">"手机丢失或被盗时,PIN 码可为其提供保护"</string>
|
||||
<string name="lock_screen_pattern_skip_message" product="default" msgid="827145253475892869">"手机丢失或被盗时,解锁图案可为其提供保护"</string>
|
||||
<string name="lock_screen_password_skip_message" product="default" msgid="8112387870039469467">"手机丢失或被盗时,密码可为其提供保护"</string>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<string name="lock_screen_pin_skip_fingerprint_message" product="default" msgid="3396830571282413409">"必须设置 PIN 码,才能设置指纹解锁。\n\n手机丢失或被盗时,PIN 码可为其提供保护。"</string>
|
||||
<string name="lock_screen_pattern_skip_fingerprint_message" product="default" msgid="2952431330433118050">"必须设置解锁图案,才能设置指纹解锁。\n\n手机丢失或被盗时,解锁图案可为其提供保护。"</string>
|
||||
<string name="lock_screen_password_skip_fingerprint_message" product="default" msgid="8499384469890032816">"必须设置密码,才能设置指纹解锁。\n\n手机丢失或被盗时,密码可为其提供保护。"</string>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<string name="lock_screen_pin_skip_face_message" product="default" msgid="358903382559327157">"必须设置 PIN 码,才能设置人脸解锁。\n\n手机丢失或被盗时,PIN 码可为其提供保护。"</string>
|
||||
<string name="lock_screen_pattern_skip_face_message" product="default" msgid="6400426500859622964">"必须设置解锁图案,才能设置人脸解锁。\n\n手机丢失或被盗时,解锁图案可为其提供保护。"</string>
|
||||
<string name="lock_screen_password_skip_face_message" product="default" msgid="1555954661782997039">"必须设置密码,才能设置人脸解锁。\n\n手机丢失或被盗时,密码可为其提供保护。"</string>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<string name="lock_screen_pin_skip_biometrics_message" product="default" msgid="2717938545326672010">"必须设置 PIN 码,才能设置人脸解锁和指纹解锁。\n\n手机丢失或被盗时,PIN 码可为其提供保护。"</string>
|
||||
<string name="lock_screen_pattern_skip_biometrics_message" product="default" msgid="6067309080610183546">"必须设置解锁图案,才能设置人脸解锁和指纹解锁。\n\n手机丢失或被盗时,解锁图案可为其提供保护。"</string>
|
||||
<string name="lock_screen_password_skip_biometrics_message" product="default" msgid="4739690336878613804">"必须设置密码,才能设置人脸解锁和指纹解锁。\n\n手机丢失或被盗时,密码可为其提供保护。"</string>
|
||||
<string name="fingerprint_v2_delete_message" product="default" msgid="8723083814238510088">"确认删除后,手机上存储的与“<xliff:g id="FINGERPRINT_ID">%1$s</xliff:g>”关联的指纹图像和模型将被删除"</string>
|
||||
|
||||
|
||||
<string name="fingerprint_last_delete_message" product="default" msgid="3187410175262625294">"您将无法使用指纹来解锁手机或在应用中验证自己的身份。"</string>
|
||||
|
||||
|
||||
<string name="fingerprint_unlock_title" product="default" msgid="3224008661274975980">"您可以通过指纹解锁手机。为安全起见,您必须设置备用屏幕锁定方式,才能使用该选项。"</string>
|
||||
|
||||
|
||||
<string name="face_unlock_title" product="default" msgid="6204354389041615791">"您可以通过人脸解锁手机。为安全起见,您必须设置备用屏幕锁定方式,才能使用该选项。"</string>
|
||||
|
||||
|
||||
<string name="biometrics_unlock_title" product="default" msgid="8270390834627826090">"您可以通过人脸或指纹解锁手机。为安全起见,您必须设置备用屏幕锁定方式,才能使用该选项。"</string>
|
||||
|
||||
|
||||
|
||||
<string name="encrypt_title" product="default" msgid="511146128799853404">"加密手机"</string>
|
||||
|
||||
|
||||
<string name="suggested_lock_settings_summary" product="default" msgid="8050809409337082738">"设置屏幕锁定方式以保护手机"</string>
|
||||
|
||||
|
||||
<string name="suggested_fingerprint_lock_settings_summary" product="default" msgid="8565330205932332157"></string>
|
||||
|
||||
|
||||
<string name="setup_lock_settings_picker_title" product="default" msgid="9097195832806088530">"为手机启用保护功能"</string>
|
||||
|
||||
|
||||
<string name="setup_lock_settings_picker_message" product="default" msgid="343440740226992914">"启用设备保护功能可防止他人在未经您允许的情况下使用此手机。请选择您要使用的屏幕锁定方式。"</string>
|
||||
<string name="bluetooth_unpair_dialog_body" product="default" msgid="176620413491664050">"您的手机将与<xliff:g id="DEVICE_NAME">%1$s</xliff:g>取消配对"</string>
|
||||
|
||||
|
||||
<string name="nfc_secure_toggle_summary" product="default" msgid="3515508978581011683">"仅允许在屏幕处于解锁状态时使用 NFC"</string>
|
||||
<string name="wifi_add_app_single_network_summary" product="default" msgid="7742934005022827107">"<xliff:g id="APPNAME">%1$s</xliff:g>想将 1 个网络保存到您的手机"</string>
|
||||
|
||||
<string name="wifi_add_app_networks_summary" product="default" msgid="7014504084783236696">"<xliff:g id="APPNAME">%1$s</xliff:g>想将这些网络保存到您的手机"</string>
|
||||
|
||||
<string name="auto_rotate_screen_summary" product="default" msgid="5562937346878935483">"当您变换手机持握方向时,自动调整为相应的竖屏或横屏模式"</string>
|
||||
|
||||
|
||||
<string name="sim_lock_on" product="default" msgid="6896034657274595838">"需要输入 PIN 码才能使用手机"</string>
|
||||
|
||||
<string name="sim_lock_off" product="default" msgid="2064502270875375541">"需要输入 PIN 码才能使用手机"</string>
|
||||
|
||||
<string name="status_number" product="default" msgid="2333455505912871374">"手机号码"</string>
|
||||
|
||||
<string name="status_number_sim_slot" product="default" msgid="1333171940376236656">"电话号码(SIM 卡插槽 %1$d)"</string>
|
||||
|
||||
<string name="status_number_sim_status" product="default" msgid="7536755538266735352">"SIM 卡上的电话号码"</string>
|
||||
|
||||
|
||||
|
||||
<string name="storage_wizard_init_v2_internal_title" product="default" msgid="2049551739429034707">"将 SD 卡格式化为内部存储设备"</string>
|
||||
<string name="storage_wizard_init_v2_internal_summary" product="default" msgid="4395040788668914783">"存储仅供此手机使用的应用和媒体。<a href=https://support.google.com/android/answer/12153449>详细了解如何设置 SD 卡</a>。"</string>
|
||||
<string name="storage_wizard_init_v2_internal_action" product="default" msgid="560506072518373839">"格式化"</string>
|
||||
|
||||
<string name="storage_wizard_migrate_v2_body" product="default" msgid="3807501187945770401">"您可以将文件、媒体和特定应用移至此<xliff:g id="NAME">^1</xliff:g>。\n\n这项移动操作将释放 <xliff:g id="SIZE">^2</xliff:g> 的手机存储空间,大约需要 <xliff:g id="DURATION">^3</xliff:g>的时间完成。"</string>
|
||||
|
||||
<string name="storage_wizard_migrate_v2_checklist_battery" product="default" msgid="8041162611685970218">"请将此手机保持在充电状态"</string>
|
||||
|
||||
<string name="main_clear_desc" product="default" msgid="1888412491866186706">"此操作会清除您手机"<b>"内部存储空间"</b>"中的所有数据,包括:\n\n"<li>"您的 Google 账号"</li>\n<li>"系统和应用的数据和设置"</li>\n<li>"已下载的应用"</li></string>
|
||||
<string name="main_clear_accounts" product="default" msgid="3604029744509330786">\n\n"您目前已登录以下账号:\n"</string>
|
||||
<string name="main_clear_other_users_present" product="default" msgid="7750368595882863399">\n\n"此设备上目前还有其他用户。\n"</string>
|
||||
|
||||
<string name="main_clear_desc_erase_external_storage" product="default" msgid="2891180770413959600">\n\n"如需清除音乐、图片和其他用户数据,您需要清空该 "<b>"SD 卡"</b>"。"</string>
|
||||
|
||||
<string name="erase_external_storage" product="default" msgid="645024170825543458">"格式化SD卡"</string>
|
||||
|
||||
<string name="erase_external_storage_description" product="default" msgid="3294267929524578503">"清除SD卡中的全部数据,例如音乐或照片"</string>
|
||||
|
||||
<string name="main_clear_button_text" product="default" msgid="3763748694468489783">"清除所有数据"</string>
|
||||
<string name="usb_tethering_subtext" product="default" msgid="5969806206311342779">"通过 USB 共享手机的互联网连接"</string>
|
||||
|
||||
|
||||
<string name="bluetooth_tethering_subtext" product="default" msgid="3638886236597805392">"通过蓝牙共享手机的互联网连接"</string>
|
||||
<string name="ethernet_tethering_subtext" product="default" msgid="8652438909365718644">"通过以太网共享手机的互联网连接"</string>
|
||||
|
||||
|
||||
<string name="about_settings" product="default" msgid="2621311564780208250">"关于本机"</string>
|
||||
|
||||
|
||||
|
||||
<string name="install_all_warning" product="default" msgid="4597256179485325694">"您的手机和个人数据更容易受到未知应用的攻击。安装来自该来源的应用即表示,您同意对因使用这些应用可能导致的手机损坏或数据丢失承担责任。"</string>
|
||||
|
||||
|
||||
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6869998550403667737">"如果停止此服务,您手机上的某些功能也将随之停止工作,并在您将手机关机然后再重新打开后才能使用。"</string>
|
||||
|
||||
<string name="testing_phone_info" product="default" msgid="7507506297352160191">"手机信息"</string>
|
||||
<string name="accessibility_text_reading_confirm_dialog_message" product="default" msgid="1773409172676594981">"您的显示大小和文字偏好设置将重置为手机的原始设置"</string>
|
||||
|
||||
<string name="accessibility_daltonizer_about_intro_text" product="default" msgid="5234458848997942613">"调整手机上的颜色显示方式"</string>
|
||||
|
||||
<string name="reduce_bright_colors_preference_summary" product="default" msgid="2025941326724094318">"将屏幕调得比手机最低亮度更暗"</string>
|
||||
|
||||
<string name="reduce_bright_colors_preference_subtitle" product="default" msgid="9162440023310121356">"“极暗”功能适用于以下情况:<ol> <li>手机的默认最低亮度依然太亮</li> <li>在夜间或睡前黑暗房间等昏暗环境中使用手机</li> </ol>"</string>
|
||||
|
||||
<string name="battery_tip_summary_summary" product="default" msgid="1880496476760792933">"手机的后台耗电量正常"</string>
|
||||
|
||||
|
||||
<string name="battery_tip_limited_temporarily_dialog_msg" product="default" msgid="4134817691837413711">"在某些情况下(例如高温和长时间充电时),手机可能会限制充电量,充电到 <xliff:g id="PERCENT">%1$s</xliff:g> 时便暂停充电。这样有助于使电池保持良好状态。\n\n这类情况结束时,手机会自动恢复正常充电。"</string>
|
||||
|
||||
<string name="battery_tip_dialog_message" product="default" msgid="7183790460600610222">"您的手机的使用强度比平时高,因此电池电量的耗尽速度可能会比平时要快。\n\n耗电量较高的应用:"</string>
|
||||
|
||||
|
||||
<string name="battery_tip_dialog_summary_message" product="default" msgid="5760208650901831793">"您的应用目前耗电量正常。如果应用耗电量过高,您的手机会提供操作建议。\n\n如果电池电量不足,您可以随时开启省电模式。"</string>
|
||||
|
||||
|
||||
<string name="smart_battery_summary" product="default" msgid="1210637215867635435">"限制不常用的应用的耗电量"</string>
|
||||
<string name="battery_usage_screen_footer" product="default" msgid="8872101342490341865">"手机充电时,系统不会衡量电池用量和设备使用时间"</string>
|
||||
|
||||
|
||||
|
||||
<string name="credentials_install_summary" product="default" msgid="879796378361350092">"从SD卡安装证书"</string>
|
||||
|
||||
<string name="really_remove_account_message" product="default" msgid="6681864753604250818">"移除账号后,手机中的所有相关邮件、联系人及其他数据都会被删除!"</string>
|
||||
|
||||
|
||||
<string name="data_usage_auto_sync_on_dialog" product="default" msgid="7207326473052484970">"您在网络上对自己的账号进行的所有更改都会自动同步到您的手机。\n\n有些账号还可以将您在手机上进行的所有更改自动同步到网络上。Google 账号就支持此类双向同步。"</string>
|
||||
|
||||
<string name="data_usage_limit_dialog_mobile" product="default" msgid="4552449053646826676">"当移动数据流量的使用量达到您设置的上限时,您的手机将关闭移动数据网络。\n\n由于流量用量是由您的手机计算的,而您的运营商对流量用量的计算方式可能有所不同,因此建议您设置一个保守的上限值。"</string>
|
||||
|
||||
|
||||
<string name="user_settings_footer_text" product="default" msgid="5440172971747221370">"通过添加新用户,您可以与他人共用一部手机。每个用户都将在您的手机上拥有个人空间,并可自行设定主屏幕、账号、应用和设置等。"</string>
|
||||
|
||||
<string name="user_cannot_manage_message" product="default" msgid="8596259161937605316">"只有手机的机主可以管理用户。"</string>
|
||||
|
||||
<string name="user_confirm_remove_self_message" product="default" msgid="3209762447055039706">"您将丢失自己在这部手机上的空间和数据,此操作无法撤消。"</string>
|
||||
<string name="support_summary" product="default" msgid="2044721479256103419">"帮助中心文章、电话与聊天支持"</string>
|
||||
|
||||
|
||||
<string name="ambient_display_title" product="default" msgid="8027137727044125809">"点按手机两次即显示"</string>
|
||||
|
||||
|
||||
<string name="ambient_display_pickup_title" product="default" msgid="6753194901596847876">"拿起手机即显示"</string>
|
||||
|
||||
|
||||
<string name="ambient_display_pickup_summary" product="default" msgid="135853288202686097">"拿起您的手机即可查看时间、通知和其他信息。"</string>
|
||||
|
||||
|
||||
<string name="ambient_display_tap_screen_title" product="default" msgid="4098147293617084955">"点按手机即显示"</string>
|
||||
|
||||
|
||||
<string name="fingerprint_swipe_for_notifications_summary" product="default" msgid="9220919404923939167">"要查看通知,请在手机背面的指纹传感器上向下滑动手指。"</string>
|
||||
|
||||
|
||||
<string name="no_5g_in_dsds_text" product="default" msgid="5094072105248383976">"使用 2 个 SIM 卡时,此手机将仅限使用 4G 网络。"<annotation id="url">"了解详情"</annotation></string>
|
||||
|
||||
|
||||
<string name="reset_internet_text" product="default" msgid="8672305377652449075">"通话将因此结束"</string>
|
||||
|
||||
<string name="lockpassword_confirm_your_pattern_details_frp" product="default" msgid="8795084788352126815">"您的手机已恢复出厂设置。如要使用此手机,请绘制之前使用的解锁图案。"</string>
|
||||
|
||||
|
||||
<string name="lockpassword_confirm_your_pin_details_frp" product="default" msgid="2027547169650312092">"您的手机已恢复出厂设置。如要使用此手机,请输入之前使用的 PIN 码。"</string>
|
||||
|
||||
|
||||
<string name="lockpassword_confirm_your_password_details_frp" product="default" msgid="1465326741724776281">"您的手机已恢复出厂设置。如要使用此手机,请输入之前使用的密码。"</string>
|
||||
|
||||
|
||||
<string name="battery_tip_incompatible_charging_message" product="default" msgid="5097154279720383707">"您的手机可能充电缓慢或未在充电。为了加快充电速度,请使用推荐的数据线和适配器。"</string>
|
||||
|
||||
|
||||
<string name="lockscreen_trivial_controls_summary" product="default" msgid="42562533085885152">"无需解锁手机"</string>
|
||||
|
||||
<string name="auto_rotate_summary_a11y" product="default" msgid="2813368383309985185">"当您在纵向与横向之间变换手机持握方向时"</string>
|
||||
|
||||
<string name="daltonizer_feature_summary" product="default" msgid="3940653889277283702">"调整手机上的颜色显示方式"</string>
|
||||
|
||||
<string name="spatial_audio_speaker" product="default" msgid="7148176677982615792">"手机扬声器"</string>
|
||||
|
||||
|
||||
</resources>
|
33
Settings/res-product/values/config.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2023 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- The illustration for those screen are not in one of below type. This file should be a video in JSON format. -->
|
||||
<item name="a11y_timeout_banner" type="raw" product="default">@raw/accessibility_timeout_banner</item>
|
||||
<!-- <item name="a11y_timeout_banner" type="raw" product="tablet">@raw/accessibility_timeout_banner_tablet</item>-->
|
||||
|
||||
<item name="a11y_shortcut_type_triple_tap" type="raw" product="default">@raw/accessibility_shortcut_type_triple_tap</item>
|
||||
<!-- <item name="a11y_shortcut_type_triple_tap" type="raw" product="tablet">@raw/accessibility_shortcut_type_triple_tap_tablet</item>-->
|
||||
|
||||
<item name="a11y_color_inversion_banner" type="raw" product="default">@raw/accessibility_color_inversion_banner</item>
|
||||
<!-- <item name="a11y_color_inversion_banner" type="raw" product="tablet">@raw/accessibility_color_inversion_banner_tablet</item>-->
|
||||
|
||||
<item name="a11y_magnification_banner" type="raw" product="default">@raw/accessibility_magnification_banner</item>
|
||||
<!-- <item name="a11y_magnification_banner" type="raw" product="tablet">@raw/accessibility_magnification_banner_tablet</item>-->
|
||||
|
||||
<item name="a11y_extra_dim_banner" type="raw" product="default">@raw/extra_dim_banner</item>
|
||||
<!-- <item name="a11y_extra_dim_banner" type="raw" product="tablet">@raw/extra_dim_banner_tablet</item>-->
|
||||
</resources>
|
67
Settings/res-product/values/drawables.xml
Normal file
@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2023 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<drawable name="a11y_button_preview_base" product="default">@drawable/accessibility_button_preview_base</drawable>
|
||||
<!-- <drawable name="a11y_button_preview_base" product="tablet">@drawable/accessibility_button_preview_base_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_button_preview_large_floating_menu" product="default">@drawable/accessibility_button_preview_large_floating_menu</drawable>
|
||||
<!-- <drawable name="a11y_button_preview_large_floating_menu" product="tablet">@drawable/accessibility_button_preview_large_floating_menu_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_button_preview_small_floating_menu" product="default">@drawable/accessibility_button_preview_small_floating_menu</drawable>
|
||||
<!-- <drawable name="a11y_button_preview_small_floating_menu" product="tablet">@drawable/accessibility_button_preview_small_floating_menu_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_button_navigation" product="default">@drawable/accessibility_button_navigation</drawable>
|
||||
<!-- <drawable name="a11y_button_navigation" product="tablet">@drawable/accessibility_button_navigation_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_captioning_banner" product="default">@drawable/accessibility_captioning_banner</drawable>
|
||||
<!-- <drawable name="a11y_captioning_banner" product="tablet">@drawable/accessibility_captioning_banner_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_shortcut_type_hardware" product="default">@drawable/accessibility_shortcut_type_hardware</drawable>
|
||||
<!-- <drawable name="a11y_shortcut_type_hardware" product="tablet">@drawable/accessibility_shortcut_type_hardware_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_shortcut_type_software" product="default">@drawable/accessibility_shortcut_type_software</drawable>
|
||||
<!-- <drawable name="a11y_shortcut_type_software" product="tablet">@drawable/accessibility_shortcut_type_software_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_shortcut_type_software_floating" product="default">@drawable/accessibility_shortcut_type_software_floating</drawable>
|
||||
<!-- <drawable name="a11y_shortcut_type_software_floating" product="tablet">@drawable/accessibility_shortcut_type_software_floating_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_shortcut_type_software_gesture" product="default">@drawable/accessibility_shortcut_type_software_gesture</drawable>
|
||||
<!-- <drawable name="a11y_shortcut_type_software_gesture" product="tablet">@drawable/accessibility_shortcut_type_software_gesture_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_shortcut_type_software_gesture_talkback" product="default">@drawable/accessibility_shortcut_type_software_gesture_talkback</drawable>
|
||||
<!-- <drawable name="a11y_shortcut_type_software_gesture_talkback" product="tablet">@drawable/accessibility_shortcut_type_software_gesture_talkback_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_gesture_navigation_two_finger_preview" product="default">@drawable/accessibility_gesture_navigation_two_finger_preview</drawable>
|
||||
<!-- <drawable name="a11y_gesture_navigation_two_finger_preview" product="tablet">@drawable/accessibility_gesture_navigation_two_finger_preview_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_gesture_navigation_three_finger_preview" product="default">@drawable/accessibility_gesture_navigation_three_finger_preview</drawable>
|
||||
<!-- <drawable name="a11y_gesture_navigation_three_finger_preview" product="tablet">@drawable/accessibility_gesture_navigation_three_finger_preview_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_button_preview_two_finger" product="default">@drawable/accessibility_button_preview_two_finger</drawable>
|
||||
<!-- <drawable name="a11y_button_preview_two_finger" product="tablet">@drawable/accessibility_button_preview_two_finger_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_button_preview_three_finger" product="default">@drawable/accessibility_button_preview_three_finger</drawable>
|
||||
<!-- <drawable name="a11y_button_preview_three_finger" product="tablet">@drawable/accessibility_button_preview_three_finger_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_magnification_mode_fullscreen" product="default">@drawable/accessibility_magnification_mode_fullscreen</drawable>
|
||||
<!-- <drawable name="a11y_magnification_mode_fullscreen" product="tablet">@drawable/accessibility_magnification_mode_fullscreen_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_magnification_mode_switch" product="default">@drawable/accessibility_magnification_mode_switch</drawable>
|
||||
<!-- <drawable name="a11y_magnification_mode_switch" product="tablet">@drawable/accessibility_magnification_mode_switch_tablet</drawable>-->
|
||||
|
||||
<drawable name="a11y_magnification_mode_window" product="default">@drawable/accessibility_magnification_mode_window</drawable>
|
||||
<!-- <drawable name="a11y_magnification_mode_window" product="tablet">@drawable/accessibility_magnification_mode_window_tablet</drawable>-->
|
||||
</resources>
|
726
Settings/res-product/values/strings.xml
Normal file
@ -0,0 +1,726 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2022 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- Bluetooth settings. Message for disconnecting from all profiles of a bluetooth device. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_disconnect_all_profiles" product="default">Your phone will disconnect from "<xliff:g id="device_name">%1$s</xliff:g>."</string>
|
||||
<!-- Bluetooth settings. Message for disconnecting from all profiles of a bluetooth device. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Bluetooth settings. Message for disconnecting from all profiles of a bluetooth device. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Bluetooth mac address message. This message shows the bluetooth mac address for this device. [CHAR LIMIT=120] -->
|
||||
<string name="bluetooth_footer_mac_message" product="default">Phone\'s Bluetooth address: <xliff:g id="bluetooth_mac_address">%1$s</xliff:g></string>
|
||||
<!-- Bluetooth mac address message. This message shows the bluetooth mac address for this device. [CHAR LIMIT=120] -->
|
||||
|
||||
<!-- Bluetooth mac address message. This message shows the bluetooth mac address for this device. [CHAR LIMIT=120] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_discovery" product="default"><xliff:g id="app_name">%1$s</xliff:g> wants to make your phone visible to other Bluetooth devices for <xliff:g id="timeout">%2$d</xliff:g> seconds.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_discovery_no_name" product="default">An app wants to make your phone visible to other Bluetooth devices for <xliff:g id="timeout">%1$d</xliff:g> seconds.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable lasting discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable lasting discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_lasting_discovery" product="default"><xliff:g id="app_name">%1$s</xliff:g> wants to make your phone visible to other Bluetooth devices. You can change this later in Bluetooth settings.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable lasting discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable lasting discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_lasting_discovery_no_name" product="default">An app wants to make your phone visible to other Bluetooth devices. You can change this later in Bluetooth settings.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_enablement_and_discovery" product="default"><xliff:g id="app_name">%1$s</xliff:g> wants to turn on Bluetooth and make your phone visible to other devices for <xliff:g id="timeout">%2$d</xliff:g> seconds.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_enablement_and_discovery_no_name" product="default">An app wants to turn on Bluetooth and make your phone visible to other devices for <xliff:g id="timeout">%1$d</xliff:g> seconds.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_enablement_and_lasting_discovery" product="default"><xliff:g id="app_name">%1$s</xliff:g> wants to turn on Bluetooth and make your phone visible to other devices. You can change this later in Bluetooth settings.</string>
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="bluetooth_ask_enablement_and_lasting_discovery_no_name" product="default">An app wants to turn on Bluetooth and make your phone visible to other devices. You can change this later in Bluetooth settings.</string>
|
||||
<!-- Security Settings screen Encryption and credential summary -->
|
||||
<string name="encryption_and_credential_settings_summary" product="default">Phone encrypted</string>
|
||||
<string name="not_encrypted_summary" product="default">Phone not encrypted</string>
|
||||
<!-- Security Settings screen Encryption and credential summary -->
|
||||
|
||||
|
||||
<!-- Introduction detail message shown in face education for accessibility [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_education_message_accessibility" product="default"></string>
|
||||
<!-- Introduction detail message shown in face education for accessibility [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction detail message shown in face education for accessibility [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Additional details shown when the accessibility toggle is expanded. [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_face_enroll_introduction_accessibility_expanded" product="default"></string>
|
||||
<!-- Additional details shown when the accessibility toggle is expanded. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Additional details shown when the accessibility toggle is expanded. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_face_enroll_introduction_message" product="default">Use your face to unlock your phone, authorize purchases, or sign in to apps.</string>
|
||||
<!-- Introduction detail message shown in face enrollment dialog [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Subtitle shown on the face enrollment introduction screen with in-app authentication. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_message_class3" product="default">Use your face to unlock your phone or for authentication in apps, like when you sign in to apps or approve a purchase.</string>
|
||||
<!-- Subtitle shown on the face enrollment introduction screen with in-app authentication. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Subtitle shown on the face enrollment introduction screen with in-app authentication. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_face_enroll_introduction_consent_message_0" product="default">Allow your child to use their face to unlock their phone</string>
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_face_enroll_introduction_consent_message_0_class3" product="default">Allow your child to use their face to unlock their phone or verify it\u2019s them. This happens when they sign in to apps, approve a purchase, and more.</string>
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_face_enroll_introduction_consent_message" product="default">Using your child\u2019s face to unlock their phone may be less secure than a strong pattern or PIN.</string>
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in face enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about what could cause the phone to unlock. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_info_looking" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that provides information about what could cause the phone to unlock. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about what could cause the phone to unlock. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about what could cause the phone to unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_info_consent_looking" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that provides information about what could cause the phone to unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about what could cause the phone to unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about the relative security of face for unlocking the phone. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_info_consent_less_secure" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that provides information about the relative security of face for unlocking the phone. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about the relative security of face for unlocking the phone. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about the relative security of face for unlocking the phone for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_info_less_secure" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that provides information about the relative security of face for unlocking the phone for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about the relative security of face for unlocking the phone for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about how to require eyes to be open for Face Unlock. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_info_gaze" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that provides information about how to require eyes to be open for Face Unlock. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about how to require eyes to be open for Face Unlock. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about how to require eyes to be open for Face Unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_info_consent_gaze" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that provides information about how to require eyes to be open for Face Unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that provides information about how to require eyes to be open for Face Unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains how face unlock works. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_how_message" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that explains how face unlock works. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains how face unlock works. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains how Face Unlock works when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_how_consent_message" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that explains how Face Unlock works when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains how Face Unlock works when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains privacy controls for face unlock [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_control_message" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that explains privacy controls for face unlock [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains privacy controls for face unlock [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains privacy controls for face unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_enroll_introduction_control_consent_message" product="default"></string>
|
||||
<!-- Message on the face enrollment introduction page that explains privacy controls for face unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message on the face enrollment introduction page that explains privacy controls for face unlock when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_settings_footer" product="default">Use your face to unlock your phone or for authentication in apps, like when you sign in or approve a purchase.\n\nKeep in mind:\nYou can only have one face set up at a time. To add another face, delete the current one.\n\nLooking at the phone can unlock it when you don\u2019t intend to.\n\nYour phone can be unlocked by someone else if it\u2019s held up to your face.\n\nYour phone can be unlocked by someone who looks a lot like you, like an identical sibling.</string>
|
||||
<!-- Text shown in face settings explaining what your face can be used for. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when attention checking is not supported. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_settings_footer_attention_not_supported" product="default">Use your face to unlock your phone or for authentication in apps, like when you sign in or approve a purchase.\n\nKeep in mind:\nYou can only have one face set up at a time. To add another face, delete the current one.\n\nLooking at the phone can unlock it when you don\u2019t intend to.\n\nYour phone can be unlocked by someone else if it\u2019s held up to your face, even if your eyes are closed.\n\nYour phone can be unlocked by someone who looks a lot like you, like an identical sibling.</string>
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when attention checking is not supported. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when attention checking is not supported. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when face is class 3. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_settings_footer_class3" product="default">Use your face to unlock your phone or verify it\u2019s you, like when you sign in to apps or approve a purchase.\n\nKeep in mind:\nYou can only have one face set up at a time. To add another face, delete the current one.\n\nLooking at the phone can unlock it when you don\u2019t intend to.\n\nYour phone can be unlocked by someone else if it\u2019s held up to your face.\n\nYour phone can be unlocked by someone who looks a lot like you, like an identical sibling.</string>
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when face is class 3. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when face is class 3. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when face is class 3 and attention checking is not supported. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_face_settings_footer_class3_attention_not_supported" product="default">Use your face to unlock your phone or verify it\u2019s you, like when you sign in to apps or approve a purchase.\n\nKeep in mind:\nYou can only have one face set up at a time. To add another face, delete the current one.\n\nLooking at the phone can unlock it when you don\u2019t intend to.\n\nYour phone can be unlocked by someone else if it\u2019s held up to your face, even if your eyes are closed.\n\nYour phone can be unlocked by someone who looks a lot like you, like an identical sibling.</string>
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when face is class 3 and attention checking is not supported. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Text shown in face settings explaining what your face can be used for. Used when face is class 3 and attention checking is not supported. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction detail message shown in fingerprint enrollment dialog [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_fingerprint_enroll_introduction_v3_message">Use your fingerprint to unlock your <xliff:g id="deviceName" example="Pixel">%s</xliff:g> or verify it\u2019s you, like when you sign in to apps or approve a purchase</string>
|
||||
<!-- Introduction detail message shown in fingerprint enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_fingerprint_enroll_introduction_consent_message" product="default">Allow your child to use their fingerprint to unlock their phone or verify it\u2019s them. This happens when they sign in to apps, approve a purchase, and more.</string>
|
||||
<!-- Introduction detail message shown in fingerprint enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction detail message shown in fingerprint enrollment dialog when asking for parental consent [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_1" product="default">Using your fingerprint to unlock your phone may be less secure than a strong pattern or PIN</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_3" product="default">When you use Pixel Imprint, images are used to update your fingerprint model. Images used to create your fingerprint model are never stored, but the fingerprint model is stored securely on your phone and never leaves the phone. All processing occurs securely on your phone.</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_consent_3" product="default">When they use Pixel Imprint, images are used to update their fingerprint model. Images used to create your child\u2019s fingerprint model are never stored, but the fingerprint model is stored securely on the phone and never leaves the phone. All processing occurs securely on the phone.</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_4" product="default">You can delete your fingerprint images and model, or turn off Fingerprint Unlock at any time in Settings. Fingerprint images and models are stored on the phone until you delete them.</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_consent_4" product="default">You and your child can delete their fingerprint images and model, or turn off Fingerprint Unlock at any time in Settings. Fingerprint images and models are stored on the phone until they\u2019re deleted.</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_5" product="default">Your phone can be unlocked when you don\u2019t intend to, like if someone holds it up to your finger.</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_fingerprint_v2_enroll_introduction_footer_message_consent_5" product="default">Your child\u2019s phone can be unlocked when they don\u2019t intend to, like if someone holds it up to their finger.</string>
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Introduction description message shown in fingerprint enrollment introduction screen in setup wizard when asking for parental consent. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message text only shown in fingerprint security settings home screen. (tablet) [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message text only shown in fingerprint security settings home screen. (device) [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message text only shown in fingerprint security settings home screen. (phone) [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_fingerprint_v2_home_screen_text" product="default">Use your fingerprint to unlock your phone or verify it\u2019s you, like when you sign in to apps</string>
|
||||
<!-- Message shown during enrollment to prompt a child to give the device to a parent or guardian. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown during enrollment to prompt a child to give the device to a parent or guardian. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown during enrollment to prompt a child to give the device to a parent or guardian. [CHAR LIMIT=NONE]-->
|
||||
<string name="biometric_settings_hand_back_to_guardian" product="default">Hand the phone back to your parent</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning them of potential consequences of not doing so, including loss of factory reset protection. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning them of potential consequences of not doing so, including loss of factory reset protection. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning them of potential consequences of not doing so, including loss of factory reset protection. (phone) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_intro_skip_dialog_text_frp" product="default">Device protection features won\u2019t be turned on. You won\u2019t be able to prevent others from using this phone if it\u2019s lost, stolen or reset.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning them of potential consequences of not doing so. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning them of potential consequences of not doing so. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning them of potential consequences of not doing so. (phone) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_intro_skip_dialog_text" product="default">Device protection features won\u2019t be turned on. You won\u2019t be able to prevent others from using this phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Message shown in SFPS enrollment dialog to locate the sensor (tablet) [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in SFPS enrollment dialog to locate the sensor (device) [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in SFPS enrollment dialog to locate the sensor (default) [CHAR LIMIT=NONE]-->
|
||||
<string name="security_settings_sfps_enroll_find_sensor_message" product="default">The fingerprint sensor is on the power button. It’s the flat button next to the raised volume button on the edge of the phone.</string>
|
||||
<!-- Message shown in fingerprint enrollment dialog once enrollment is completed (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in fingerprint enrollment dialog once enrollment is completed (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in fingerprint enrollment dialog once enrollment is completed (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_fingerprint_enroll_finish_v2_message" product="default">Now you can use your fingerprint to unlock your phone or verify it\u2019s you, like when you sign in to apps or approve a purchase</string>
|
||||
<!-- Message shown in fingerprint enrollment dialog once enrollment is completed (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in fingerprint enrollment dialog once enrollment is completed (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in fingerprint enrollment dialog once enrollment is completed (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="security_settings_fingerprint_enroll_finish_v2_add_fingerprint_message" product="default">Now you can use your fingerprint to unlock your phone or verify it\u2019s you, like when you sign in to apps or approve a purchase.\n\nAdd another fingerprint so it\u2019s easier to unlock when you hold your phone in different ways.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pin_skip_message" product="default">A PIN protects the phone if it\u2019s lost or stolen</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pattern_skip_message" product="default">A pattern protects the phone if it\u2019s lost or stolen</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_password_skip_message" product="default">A password protects the phone if it\u2019s lost or stolen</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pin_skip_fingerprint_message" product="default">A PIN is required to set up Fingerprint Unlock.\n\nA PIN protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pattern_skip_fingerprint_message" product="default">A pattern is required to set up Fingerprint Unlock.\n\nA pattern protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_password_skip_fingerprint_message" product="default">A password is required to set up Fingerprint Unlock.\n\nA password protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pin_skip_face_message" product="default">A PIN is required to set up Face Unlock.\n\nA PIN protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pattern_skip_face_message" product="default">A pattern is required to set up Face Unlock.\n\nA pattern protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_password_skip_face_message" product="default">A password is required to set up Face Unlock.\n\nA password protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pin_skip_biometrics_message" product="default">A PIN is required to set up Face Unlock and Fingerprint Unlock.\n\nA PIN protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_pattern_skip_biometrics_message" product="default">A pattern is required to set up Face Unlock and Fingerprint Unlock.\n\nA pattern protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Dialog text shown when the user tries to skip setting up a screen lock, warning that they can't continue to set up face or fingerprint. (default) [CHAR LIMIT=NONE] -->
|
||||
<string name="lock_screen_password_skip_biometrics_message" product="default">A password is required to set up Face Unlock and Fingerprint Unlock.\n\nA password protects the phone if it\u2019s lost or stolen.</string>
|
||||
<!-- Message shown in a dialog which asks the user to confirm when a single fingerprint gets deleted. [CHAR LIMIT=NONE]-->
|
||||
<string name="fingerprint_v2_delete_message" product="default">This deletes the fingerprint images and model associated with \'<xliff:g id="fingerprint_id" example="Fingerprint 2">%1$s</xliff:g>\' that are stored on your phone</string>
|
||||
<!-- Message shown in a dialog which asks the user to confirm when a single fingerprint gets deleted. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in a dialog which asks the user to confirm when a single fingerprint gets deleted. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in a dialog which asks the user to confirm when the last fingerprint gets deleted by them. [CHAR LIMIT=NONE]-->
|
||||
<string name="fingerprint_last_delete_message" product="default">You won\'t be able to use your fingerprint to unlock your phone or verify it\'s you in apps.</string>
|
||||
<!-- Message shown in a dialog which asks the user to confirm when the last fingerprint gets deleted by them. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in a dialog which asks the user to confirm when the last fingerprint gets deleted by them. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with fingerprint option. [CHAR LIMIT=NONE]-->
|
||||
<string name="fingerprint_unlock_title" product="default">You can unlock your phone using your fingerprint. For security, this option requires a backup screen lock.</string>
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with fingerprint option. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with fingerprint option. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with face unlock option. [CHAR LIMIT=NONE] -->
|
||||
<string name="face_unlock_title" product="default">You can unlock your phone using your face. For security, this option requires a backup screen lock.</string>
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with face unlock option. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with face unlock option. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with biometrics option. [CHAR LIMIT=NONE] -->
|
||||
<string name="biometrics_unlock_title" product="default">You can unlock your phone using your face or fingerprint. For security, this option requires a backup screen lock.</string>
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with biometrics option. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message shown in screen lock picker while setting up the new screen lock with biometrics option. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Title of the preferences item to control encryption -->
|
||||
|
||||
<!-- Title of the preferences item to control encryption -->
|
||||
<string name="encrypt_title" product="default">Encrypt phone</string>
|
||||
<!-- Summary for suggested actions for screen lock (tablet) [CHAR LIMIT=55] -->
|
||||
|
||||
<!-- Summary for suggested actions for screen lock (device) [CHAR LIMIT=55] -->
|
||||
|
||||
<!-- Summary for suggested actions for screen lock (phone) [CHAR LIMIT=55] -->
|
||||
<string name="suggested_lock_settings_summary" product="default">Set screen lock to protect phone</string>
|
||||
<!-- Summary for suggested actions for settings up a fingerprint lock (tablet) [CHAR LIMIT=55] -->
|
||||
|
||||
<!-- Summary for suggested actions for settings up a fingerprint lock (device) [CHAR LIMIT=55] -->
|
||||
|
||||
<!-- Summary for suggested actions for settings up a fingerprint lock (phone) [CHAR LIMIT=55] -->
|
||||
<string name="suggested_fingerprint_lock_settings_summary" product="default"></string>
|
||||
<!-- Title for security picker in setup wizard to choose the unlock method: None/Pattern/PIN/Password (tablet) [CHAR LIMIT=22] -->
|
||||
|
||||
<!-- Title for security picker in setup wizard to choose the unlock method: None/Pattern/PIN/Password (device) [CHAR LIMIT=22] -->
|
||||
|
||||
<!-- Title for security picker in setup wizard to choose the unlock method: None/Pattern/PIN/Password (phone) [CHAR LIMIT=22] -->
|
||||
<string name="setup_lock_settings_picker_title" product="default">Protect your phone</string>
|
||||
<!-- Description text for screen in setup wizard asking user to set up screen lock, explaining to the user how setting up a screen lock protect them from losing data. (tablet) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Description text for screen in setup wizard asking user to set up screen lock, explaining to the user how setting up a screen lock protect them from losing data. (device) [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Description text for screen in setup wizard asking user to set up screen lock, explaining to the user how setting up a screen lock protect them from losing data. (phone) [CHAR LIMIT=NONE] -->
|
||||
<string name="setup_lock_settings_picker_message" product="default">Prevent others from using this phone without your permission by activating device protection features. Choose the screen lock you want to use.</string>
|
||||
<!-- Bluetooth device details. The body of a confirmation dialog for unpairing a paired device. -->
|
||||
<string name="bluetooth_unpair_dialog_body" product="default">Your phone will no longer be paired with <xliff:g id="device_name">%1$s</xliff:g></string>
|
||||
<!-- Bluetooth device details. The body of a confirmation dialog for unpairing a paired device. -->
|
||||
|
||||
<!-- Bluetooth device details. The body of a confirmation dialog for unpairing a paired device. -->
|
||||
|
||||
<!-- Description of Secure NFC in the 1st level settings screen. [CHAR LIMIT=NONE] -->
|
||||
<string name="nfc_secure_toggle_summary" product="default">Allow NFC use only when screen is unlocked</string>
|
||||
<!-- Summary for the panel of add Wi-Fi network from APP [CHAR LIMIT=NONE] -->
|
||||
<string name="wifi_add_app_single_network_summary" product="default"><xliff:g id="appName" example="ThirdPartyAppName">%1$s</xliff:g> wants to save a network to your phone</string>
|
||||
<!-- Summary for the panel of add Wi-Fi network from APP [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Summary for the panel of add multiple Wi-Fi networks from APP [CHAR LIMIT=NONE] -->
|
||||
<string name="wifi_add_app_networks_summary" product="default"><xliff:g id="appName" example="ThirdPartyAppName">%1$s</xliff:g> wants to save these networks to your phone</string>
|
||||
<!-- Summary for the panel of add multiple Wi-Fi networks from APP [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Preference summary to enable auto rotate[CHAR_LIMIT=NONE]-->
|
||||
<string name="auto_rotate_screen_summary" product="default">Automatically adjust the screen orientation when you move your phone between portrait and landscape</string>
|
||||
<!-- Preference summary to enable auto rotate[CHAR_LIMIT=NONE]-->
|
||||
|
||||
<!-- SIM card lock settings screen, setting option summary text when SIM lock check box is selected [CHAR LIMIT=40] -->
|
||||
|
||||
<!-- SIM card lock settings screen, setting option summary text when SIM lock check box is selected [CHAR LIMIT=40] -->
|
||||
<string name="sim_lock_on" product="default">Require PIN to use phone</string>
|
||||
<!-- SIM card lock settings screen, setting option summary text when SIM lock check box is clear [CHAR LIMIT=40] -->
|
||||
|
||||
<!-- SIM card lock settings screen, setting option summary text when SIM lock check box is clear [CHAR LIMIT=40] -->
|
||||
<string name="sim_lock_off" product="default">Require PIN to use phone</string>
|
||||
<!-- About tablet, status item title. The Mobile Directory Number [CHAR LIMIT=40] -->
|
||||
|
||||
<!-- About phone, status item title. The phone number of the current device [CHAR LIMIT=40] -->
|
||||
<string name="status_number" product="default">Phone number</string>
|
||||
<!-- About tablet, status item title for multi-sim devices. The Mobile Directory Number [CHAR LIMIT=40] -->
|
||||
|
||||
<!-- About phone, status item title for multi-sim devices. The phone number of the current device [CHAR LIMIT=40] -->
|
||||
<string name="status_number_sim_slot" product="default">Phone number (sim slot %1$d)</string>
|
||||
<!-- About tablet, status item title. The Mobile Directory Number [CHAR LIMIT=30] -->
|
||||
|
||||
<!-- About phone, status item title. The phone number of the current device [CHAR LIMIT=30] -->
|
||||
<string name="status_number_sim_status" product="default">Phone number on SIM</string>
|
||||
<!-- Title of a line item. Below this title, a user can tap a button to select this option if they want to use their SD card as extra device storage. [CHAR LIMIT=50] -->
|
||||
|
||||
<!-- Subtext for a line item. Below this subtext, a user can tap a button to select this option if they want to use their SD card as extra device storage. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Button text. A user can tap this button if they want to use their SD card as extra device storage. [CHAR LIMIT=32] -->
|
||||
|
||||
<!-- Title of a line item. Below this title, a user can tap a button to select this option if they want to use their SD card as extra device storage. [CHAR LIMIT=50] -->
|
||||
<string name="storage_wizard_init_v2_internal_title" product="default">Format SD card for internal storage</string>
|
||||
<!-- Subtext for a line item. Below this subtext, a user can tap a button to select this option if they want to use their SD card as extra device storage. [CHAR LIMIT=NONE] -->
|
||||
<string name="storage_wizard_init_v2_internal_summary" product="default">Store apps \u0026 media to use on this phone only. <a href="https://support.google.com/android/answer/12153449">Learn more about setting up an SD card</a>.</string>
|
||||
<!-- Button text. A user can tap this button if they want to use their SD card as extra device storage. [CHAR LIMIT=32] -->
|
||||
<string name="storage_wizard_init_v2_internal_action" product="default">Format</string>
|
||||
<!-- Main text for a full-screen message. These strings let the user know what they can move to the storage device, how much space will be made in their phone's storage, and how long the move will take. The first placeholder is for the amount of space (e.g. 1.4 GB) that will become available ("free up" is the phrasal verb used for this case). The second placeholder is for the amount of time (e.g. 6 minutes) it'll take to move their content to the storage device. The third placeholder is the name of the storage device (e.g. brand name of the SD card). [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Main text for a full-screen message. These strings let the user know what they can move to the storage device, how much space will be made in their device's storage, and how long the move will take. The first placeholder is for the amount of space (e.g. 1.4 GB) that will become available ("free up" is the phrasal verb used for this case). The second placeholder is for the amount of time (e.g. 6 minutes) it'll take to move their content to the storage device. The third placeholder is the name of the storage device (e.g. brand name of the SD card). [CHAR LIMIT=NONE] -->
|
||||
<string name="storage_wizard_migrate_v2_body" product="default">You can move files, media, and certain apps to this <xliff:g id="name" example="SanDisk SD card">^1</xliff:g>.
|
||||
\n\nThis move will free up <xliff:g id="size" example="3 GB">^2</xliff:g> of your phone\u2019s storage and should take around <xliff:g id="duration" example="3 minutes">^3</xliff:g>.</string>
|
||||
<!-- Item that a user should be aware of while moving their content to the SD card. Tells them to keep the tablet charged while the move is happening. [CHAR LIMIT=64] -->
|
||||
|
||||
<!-- Item that a user should be aware of while moving their content to the SD card. Tells them to keep the phone charged while the move is happening. [CHAR LIMIT=64] -->
|
||||
<string name="storage_wizard_migrate_v2_checklist_battery" product="default">Keep this phone charged</string>
|
||||
<!-- SD card & phone storage settings screen, message on screen after user selects Factory data reset [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- SD card & phone storage settings screen, message on screen after user selects Factory data reset [CHAR LIMIT=NONE] -->
|
||||
<string name="main_clear_desc" product="default">"This will erase all data from your phone\u2019s <b>internal storage</b>, including:\n\n<li>Your Google Account</li>\n<li>System and app data and settings</li>\n<li>Downloaded apps</li>"</string>
|
||||
<!-- SD card & phone storage settings screen, instructions and list of current accounts. The list of accounts follows this text[CHAR LIMIT=NONE] -->
|
||||
<string name="main_clear_accounts" product="default">"\n\nYou are currently signed into the following accounts:\n"</string>
|
||||
<!-- SD card & phone storage settings screen, notification if other users are present on the device [CHAR LIMIT=NONE] -->
|
||||
<string name="main_clear_other_users_present" product="default">"\n\nThere are other users present on this device.\n"</string>
|
||||
<!-- SD card & phone storage settings screen, instructions about whether to also erase the external storage (SD card) when erasing the internal storage [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- SD card & phone storage settings screen, instructions about whether to also erase the external storage (SD card) when erasing the internal storage [CHAR LIMIT=NONE] -->
|
||||
<string name="main_clear_desc_erase_external_storage" product="default">"\n\nTo clear music, pictures, and other user data, the <b>SD card</b> needs to be erased."</string>
|
||||
<!-- SD card & phone storage settings screen, label for check box to erase USB storage [CHAR LIMIT=30] -->
|
||||
|
||||
<!-- SD card & phone storage settings screen, label for check box to erase SD card [CHAR LIMIT=30] -->
|
||||
<string name="erase_external_storage" product="default">Erase SD card</string>
|
||||
<!-- SD card & phone storage settings screen, description for check box to erase USB storage [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- SD card & phone storage settings screen, description for check box to erase USB storage [CHAR LIMIT=NONE] -->
|
||||
<string name="erase_external_storage_description" product="default">Erase all the data on the SD card, such as music or photos</string>
|
||||
<!-- SD card & phone storage settings screen, button on screen after user selects Factory data reset [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- SD card & phone storage settings screen, button on screen after user selects Factory data reset [CHAR LIMIT=NONE] -->
|
||||
<string name="main_clear_button_text" product="default">Erase all data</string>
|
||||
<string name="usb_tethering_subtext" product="default">Share phone\u2019s internet connection via USB</string>
|
||||
|
||||
<!-- Bluetooth Tethering subtext [CHAR LIMIT=70]-->
|
||||
|
||||
<!-- Bluetooth Tethering subtext [CHAR LIMIT=70]-->
|
||||
<string name="bluetooth_tethering_subtext" product="default">Share phone\u2019s internet connection via Bluetooth</string>
|
||||
<!-- Ethernet Tethering subtext [CHAR LIMIT=NONE]-->
|
||||
<string name="ethernet_tethering_subtext" product="default">Share phone\u2019s internet connection via Ethernet</string>
|
||||
<!-- Ethernet Tethering subtext for tablet [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Main settings screen, setting title for the user to go into the About phone screen -->
|
||||
|
||||
<!-- Main settings screen, setting title for the user to go into the About phone screen -->
|
||||
<string name="about_settings" product="default">About phone</string>
|
||||
<!-- Main settings screen, setting title for the user to go into the About phone screen -->
|
||||
|
||||
<!-- Main settings screen, setting title for the user to go into the About phone screen -->
|
||||
|
||||
<!-- Warning that appears below the unknown sources switch in settings -->
|
||||
|
||||
<!-- Warning that appears below the unknown sources switch in settings -->
|
||||
<string name="install_all_warning" product="default">
|
||||
Your phone and personal data are more vulnerable
|
||||
to attack by unknown apps. By installing apps from
|
||||
this source, you agree that you are responsible for
|
||||
any damage to your phone or loss of data that may
|
||||
result from their use.
|
||||
</string>
|
||||
<!-- Warning that appears below the unknown sources switch in settings -->
|
||||
|
||||
<!-- Running service details, stop confirmation descriptive text. Displays when user selects selects to stop a system service. -->
|
||||
|
||||
<!-- Running service details, stop confirmation descriptive text. Displays when user selects selects to stop a system service. -->
|
||||
<string name="runningservicedetails_stop_dlg_text" product="default">If you stop this service, some
|
||||
features of your phone may stop working correctly until you power it off
|
||||
and then on again.</string>
|
||||
<!-- In the Testing screen. The item title of the activity that shows a bunch of phone-related information. -->
|
||||
|
||||
<!-- In the Testing screen. The item title of the activity that shows a bunch of phone-related information. -->
|
||||
<string name="testing_phone_info" product="default">Phone information</string>
|
||||
<!-- Message for the confirm dialog of reset settings. [CHAR LIMIT=NONE] -->
|
||||
<string name="accessibility_text_reading_confirm_dialog_message" product="default">Your display size and text preferences will reset to the phone\u2019s original settings</string>
|
||||
<!-- Message for the confirm dialog of reset settings. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Intro for color correction settings screen to control turning on/off the feature entirely. [CHAR LIMIT=NONE] -->
|
||||
<string name="accessibility_daltonizer_about_intro_text" product="default">Adjust how colors display on your phone</string>
|
||||
<!-- Intro for color correction settings screen to control turning on/off the feature entirely. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Summary for the accessibility preference to configure Reduce Brightness feature. [CHAR LIMIT=NONE] -->
|
||||
<string name="reduce_bright_colors_preference_summary" product="default">Dim screen beyond your phone\u2019s minimum brightness</string>
|
||||
<!-- Summary for the accessibility preference to configure Reduce Brightness feature. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Subtitle that describes Reduce Brightness. [CHAR LIMIT=NONE] -->
|
||||
<string name="reduce_bright_colors_preference_subtitle" product="default">
|
||||
<![CDATA[Extra dim can be helpful when:
|
||||
<ol>
|
||||
<li>\u00a0Your phone\u2019s default minimum brightness is still too bright</li>
|
||||
<li>\u00a0You\u2019re using your phone in dark situations, like at night or in a dark room before bed</li>
|
||||
</ol>
|
||||
]]>
|
||||
</string>
|
||||
<!-- Subtitle that describes Reduce Brightness. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Summary for the battery summary tip [CHAR LIMIT=NONE] -->
|
||||
<string name="battery_tip_summary_summary" product="default">Phone has typical background battery usage</string>
|
||||
<!-- Summary for the battery summary tip [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Summary for the battery summary tip [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message of battery limited temporarily tip. [CHAR LIMIT=NONE] -->
|
||||
<string name="battery_tip_limited_temporarily_dialog_msg" product="default">In certain conditions, like high temperatures and long charging periods, charging may be limited to <xliff:g id="percent" example="50%">%1$s</xliff:g> to help preserve battery health.\n\nWhen those conditions end, your phone will automatically charge normally.</string>
|
||||
<!-- Message of battery limited temporarily tip. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message for battery tip dialog to show the status about the battery [CHAR LIMIT=NONE] -->
|
||||
<string name="battery_tip_dialog_message" product="default">Because you’ve used your phone more than usual, your battery may run out sooner than it normally would.\n\nApps using most battery:</string>
|
||||
<!-- Message for battery tip dialog to show the status about the battery [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message for battery tip dialog to show the status about the battery [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Message for battery tip dialog to show the battery summary -->
|
||||
<string name="battery_tip_dialog_summary_message" product="default">Your apps are using a normal amount of battery. If apps use too much battery, your phone will suggest actions you can take.\n\nYou can always turn on Battery Saver if you\u2019re running low on battery.</string>
|
||||
<!-- Message for battery tip dialog to show the battery summary -->
|
||||
|
||||
<!-- Message for battery tip dialog to show the battery summary -->
|
||||
|
||||
<!-- Summary for the smart battery toggle [CHAR LIMIT=NONE] -->
|
||||
<string name="smart_battery_summary" product="default">Limit battery for apps that you don\u2019t use often</string>
|
||||
<!-- [CHAR_LIMIT=NONE] Battery usage main screen footer content -->
|
||||
<string name="battery_usage_screen_footer" product="default">Battery usage and screen time are not measured while the phone is charging</string>
|
||||
<!-- [CHAR_LIMIT=NONE] Battery usage main screen footer content -->
|
||||
|
||||
<!-- [CHAR_LIMIT=NONE] Battery usage main screen footer content -->
|
||||
|
||||
<!-- Summary of preference to install certificates from SD card [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Summary of preference to install certificates from SD card [CHAR LIMIT=NONE] -->
|
||||
<string name="credentials_install_summary" product="default">Install certificates from SD card</string>
|
||||
<!-- Remove account message in dialog [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Remove account message in dialog [CHAR LIMIT=NONE] -->
|
||||
<string name="really_remove_account_message" product="default">Removing this account will delete all of its messages, contacts, and other data from the phone!</string>
|
||||
<!-- Remove account message in dialog [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Body of dialog shown when user enables global auto sync, for tablet [CHAR LIMIT=none] -->
|
||||
|
||||
<!-- Body of dialog shown when user enables global auto sync [CHAR LIMIT=none] -->
|
||||
<string name="data_usage_auto_sync_on_dialog" product="default">Any changes you make to your accounts on the web will be automatically copied to your phone.\n\nSome accounts may also automatically copy any changes you make on the phone to the web. A Google Account works this way.</string>
|
||||
<!-- Body of dialog shown before user limits mobile data usage. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Body of dialog shown before user limits mobile data usage. [CHAR LIMIT=NONE] -->
|
||||
<string name="data_usage_limit_dialog_mobile" product="default">Your phone will turn off mobile data once it reaches the limit you set.\n\nSince data usage is measured by your phone, and your carrier may account for usage differently, consider setting a conservative limit.</string>
|
||||
<!-- User settings screen footer text [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- User settings screen footer text [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- User settings screen footer text [CHAR LIMIT=NONE] -->
|
||||
<string name="user_settings_footer_text" product="default">Share your phone by adding new users. Each user has a personal space on your phone for custom Home screens, accounts, apps, settings, and more.</string>
|
||||
<!-- Message to secondary users that only owner can manage users [CHAR LIMIT=none] -->
|
||||
|
||||
<!-- Message to secondary users that only owner can manage users [CHAR LIMIT=none] -->
|
||||
<string name="user_cannot_manage_message" product="default">Only the phone\u2019s owner can manage users.</string>
|
||||
<!-- User (self) removal confirmation message [CHAR LIMIT=none] -->
|
||||
|
||||
<!-- User (self) removal confirmation message [CHAR LIMIT=none] -->
|
||||
<string name="user_confirm_remove_self_message" product="default">You will lose your space and data on this phone. You can\u2019t undo this action.</string>
|
||||
<!-- Summary text for support setting tile [CHAR LIMIT=None] -->
|
||||
<string name="support_summary" product="default">Help articles, phone & chat</string>
|
||||
<!-- Summary text for support setting tile [CHAR LIMIT=None] -->
|
||||
|
||||
<!-- Summary text for support setting tile [CHAR LIMIT=None] -->
|
||||
|
||||
<!-- Preference and settings suggestion title text for ambient display double tap (phone) [CHAR LIMIT=60]-->
|
||||
<string name="ambient_display_title" product="default">Double-tap to check phone</string>
|
||||
<!-- Preference and settings suggestion title text for ambient display double tap (tablet) [CHAR LIMIT=60]-->
|
||||
|
||||
<!-- Preference and settings suggestion title text for ambient display double tap (device) [CHAR LIMIT=60]-->
|
||||
|
||||
<!-- Preference and settings suggestion title text for ambient display pick up (phone) [CHAR LIMIT=60]-->
|
||||
<string name="ambient_display_pickup_title" product="default">Lift to check phone</string>
|
||||
<!-- Preference and settings suggestion title text for ambient display pick up (tablet) [CHAR LIMIT=60]-->
|
||||
|
||||
<!-- Preference and settings suggestion title text for ambient display pick up (device) [CHAR LIMIT=60]-->
|
||||
|
||||
<!-- Summary text for ambient display (phone) [CHAR LIMIT=NONE]-->
|
||||
<string name="ambient_display_pickup_summary" product="default">To check time, notifications, and other info, pick up your phone.</string>
|
||||
<!-- Summary text for ambient display (tablet) [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Summary text for ambient display (device) [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Preference and settings suggestion title text for ambient display tap (phone) [CHAR LIMIT=60]-->
|
||||
<string name="ambient_display_tap_screen_title" product="default">Tap to check phone</string>
|
||||
<!-- Preference and settings suggestion title text for ambient display tap (tablet) [CHAR LIMIT=60]-->
|
||||
|
||||
<!-- Preference and settings suggestion title text for ambient display tap (device) [CHAR LIMIT=60]-->
|
||||
|
||||
<!-- Summary text for fingerprint swipe for notifications (phone) [CHAR LIMIT=160]-->
|
||||
<string name="fingerprint_swipe_for_notifications_summary" product="default">To check your notifications, swipe down on the fingerprint sensor on the back of your phone.</string>
|
||||
<!-- Summary text for fingerprint swipe for notifications (tablet) [CHAR LIMIT=160]-->
|
||||
|
||||
<!-- Summary text for fingerprint swipe for notifications (device) [CHAR LIMIT=160]-->
|
||||
|
||||
<!-- Footer to show current limitation of 5G on DSDS mode. [CHAR LIMIT=NONE] -->
|
||||
<string name="no_5g_in_dsds_text" product="default">When using 2 SIMs, this phone will be limited to 4G. <annotation id="url">Learn more</annotation></string>
|
||||
<!-- Footer to show current limitation of 5G on DSDS mode for tablets. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Footer to show current limitation of 5G on DSDS mode for general devices. [CHAR LIMIT=NONE] -->
|
||||
|
||||
<!-- Description for interrupting the voice call alert. [CHAR_LIMIT=NONE] -->
|
||||
<string name="reset_internet_text" product="default">This will end your phone call</string>
|
||||
<!-- Description for interrupting the voice call alert. [CHAR_LIMIT=NONE] -->
|
||||
|
||||
|
||||
<!-- Help URI, battery saver page [DO NOT TRANSLATE] -->
|
||||
<string name="help_url_battery_saver_settings" translatable="false" product="default"></string>
|
||||
|
||||
<!-- Help URI, app usage page [DO NOT TRANSLATE] -->
|
||||
<string name="help_url_app_usage_settings" translatable="false" product="default"></string>
|
||||
|
||||
<!-- An explanation text that the pattern needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
<string name="lockpassword_confirm_your_pattern_details_frp" product="default">Your phone was reset to factory settings. To use this phone, enter your previous pattern.</string>
|
||||
<!-- An explanation text that the pattern needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
|
||||
<!-- An explanation text that the pattern needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
|
||||
|
||||
<!-- An explanation text that the pin needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
<string name="lockpassword_confirm_your_pin_details_frp" product="default">Your phone was reset to factory settings. To use this phone, enter your previous PIN.</string>
|
||||
<!-- An explanation text that the pin needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
|
||||
<!-- An explanation text that the pin needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
|
||||
|
||||
<!-- An explanation text that the password needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
<string name="lockpassword_confirm_your_password_details_frp" product="default">Your phone was reset to factory settings. To use this phone, enter your previous password.</string>
|
||||
<!-- An explanation text that the password needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
|
||||
<!-- An explanation text that the password needs to be solved because the device was factory reset. [CHAR LIMIT=100] -->
|
||||
|
||||
<!-- Message of incompatible charging battery tip [CHAR LIMIT=NONE] -->
|
||||
<string name="battery_tip_incompatible_charging_message" product="default">Your phone may be charging slowly or not charging. For faster charging, use a recommended cable and adapter.</string>
|
||||
|
||||
|
||||
|
||||
<!-- Description for using device controls feature with a locked phone [CHAR LIMIT=NONE] -->
|
||||
<string name="lockscreen_trivial_controls_summary" product="default">Without unlocking your phone</string>
|
||||
<!-- Description for using device controls feature with a locked tablet [CHAR LIMIT=NONE] -->
|
||||
|
||||
|
||||
<!-- Accessibility summary text for auto rotate [CHAR LIMIT=NONE] -->
|
||||
<string name="auto_rotate_summary_a11y" product="default">When you move your phone between portrait and landscape</string>
|
||||
<!-- Accessibility summary text for auto rotate [CHAR LIMIT=NONE] -->
|
||||
|
||||
|
||||
|
||||
<!-- The daltonizer feature summary display as a subtext as an item in a list. -->
|
||||
<string name="daltonizer_feature_summary" product="default">Adjust how colors display on your phone</string>
|
||||
<!-- The daltonizer feature summary display as a subtext as an item in a list. -->
|
||||
|
||||
|
||||
<!-- Output device type for the phone speaker that is available for spatializer effect. [CHAR LIMIT=NONE]-->
|
||||
<string name="spatial_audio_speaker" product="default">Phone speakers</string>
|
||||
<!-- Output device type for the phone speaker that is available for spatializer effect. [CHAR LIMIT=NONE]-->
|
||||
|
||||
<!-- Output device type for the phone speaker that is available for spatializer effect. [CHAR LIMIT=NONE]-->
|
||||
|
||||
</resources>
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2018 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false"
|
||||
android:zAdjustment="top">
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in"
|
||||
android:duration="350" />
|
||||
</set>
|
30
Settings/res/anim/confirm_credential_close_enter.xml
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false"
|
||||
android:zAdjustment="top">
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:interpolator="@*android:interpolator/decelerate_quart"
|
||||
android:fillEnabled="true"
|
||||
android:fillBefore="false" android:fillAfter="true"
|
||||
android:duration="200"/>
|
||||
<translate android:fromYDelta="8%" android:toYDelta="0"
|
||||
android:fillEnabled="true" android:fillBefore="true" android:fillAfter="true"
|
||||
android:interpolator="@*android:interpolator/decelerate_quint"
|
||||
android:duration="350"/>
|
||||
</set>
|
21
Settings/res/anim/confirm_credential_close_exit.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in"
|
||||
android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="350" />
|
21
Settings/res/anim/confirm_credential_open_enter.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in"
|
||||
android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="160" />
|
20
Settings/res/anim/confirm_credential_open_exit.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromAlpha="1.0" android:toAlpha="1.0"
|
||||
android:duration="160" />
|
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:ordering="sequentially" >
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#000000"
|
||||
android:valueTo="#4285F4"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.07"
|
||||
android:valueTo="0.65" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#4285F4"
|
||||
android:valueTo="#000000"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.65"
|
||||
android:valueTo="0.07" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:ordering="sequentially" >
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#000000"
|
||||
android:valueTo="#4285F4"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.07"
|
||||
android:valueTo="0.65" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#4285F4"
|
||||
android:valueTo="#000000"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.65"
|
||||
android:valueTo="0.07" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:ordering="sequentially" >
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#000000"
|
||||
android:valueTo="#4285F4"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.07"
|
||||
android:valueTo="0.65" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#4285F4"
|
||||
android:valueTo="#000000"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.65"
|
||||
android:valueTo="0.07" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:ordering="sequentially" >
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#000000"
|
||||
android:valueTo="#4285F4"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.07"
|
||||
android:valueTo="0.65" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#4285F4"
|
||||
android:valueTo="#000000"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.65"
|
||||
android:valueTo="0.07" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:ordering="sequentially" >
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#000000"
|
||||
android:valueTo="#4285F4"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.07"
|
||||
android:valueTo="0.65" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="together" >
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillColor"
|
||||
android:valueFrom="#4285F4"
|
||||
android:valueTo="#000000"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:propertyName="fillAlpha"
|
||||
android:valueFrom="0.65"
|
||||
android:valueTo="0.07" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="233"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="566"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="700"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="433"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_1" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="733"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="533"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_2" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="366"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="633"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_2" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="166"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="900"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="600"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="833"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_1" />
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="400"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="900"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_0" />
|
||||
</set>
|
||||
<objectAnimator
|
||||
android:duration="866"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="1.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_2" />
|
||||
</set>
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2015 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="100"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="966"
|
||||
android:propertyName="trimPathEnd"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in" />
|
||||
</set>
|
||||
<set
|
||||
android:ordering="sequentially" >
|
||||
<objectAnimator
|
||||
android:duration="533"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="0.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@android:interpolator/linear" />
|
||||
<objectAnimator
|
||||
android:duration="900"
|
||||
android:propertyName="trimPathStart"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="floatType"
|
||||
android:interpolator="@interpolator/enrollment_fingerprint_isolated_animation_interpolator_1" />
|
||||
</set>
|
||||
</set>
|
27
Settings/res/anim/item_animation_fade_in.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="500">
|
||||
|
||||
<!-- Fade in: alpha from 0 to 100% -->
|
||||
<alpha
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"/>
|
||||
|
||||
</set>
|
22
Settings/res/anim/layout_animation_fade_in.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<layoutAnimation
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:animation="@anim/item_animation_fade_in"
|
||||
android:delay="15%"
|
||||
android:animationOrder="normal"/>
|
18
Settings/res/color-night/accent_select_primary_text.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="?android:attr/textColorPrimaryInverse" />
|
||||
</selector>
|
18
Settings/res/color-night/accent_select_secondary_text.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="?android:attr/textColorSecondaryInverse" />
|
||||
</selector>
|
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@android:color/system_neutral1_500" android:lStar="5" />
|
||||
</selector>
|
18
Settings/res/color/accent_select_background.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@android:color/system_accent2_500" android:lStar="80" />
|
||||
</selector>
|
18
Settings/res/color/accent_select_primary_text.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="?android:attr/textColorPrimary" />
|
||||
</selector>
|
18
Settings/res/color/accent_select_secondary_text.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="?android:attr/textColorSecondary" />
|
||||
</selector>
|
19
Settings/res/color/battery_icon_color_error.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:alpha="?android:attr/secondaryContentAlpha"
|
||||
android:color="?android:attr/colorError"/>
|
||||
</selector>
|
20
Settings/res/color/circle_outline_color.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2019 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:alpha="0.14"
|
||||
android:color="?android:attr/colorForeground"/>
|
||||
</selector>
|
18
Settings/res/color/color_accent_selector.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2023 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="?android:attr/colorAccent"/>
|
||||
</selector>
|
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2023 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@color/power_anomaly_app_warning_hint_color"/>
|
||||
</selector>
|
22
Settings/res/color/dream_card_color_state_list.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
|
||||
<item android:state_selected="true" android:color="?androidprv:attr/materialColorPrimaryContainer"/>
|
||||
<item android:color="?androidprv:attr/materialColorSurfaceBright"/>
|
||||
</selector>
|
22
Settings/res/color/dream_card_icon_color_state_list.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2022 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
|
||||
<item android:state_selected="true" android:color="?androidprv:attr/materialColorOnPrimaryContainer"/>
|
||||
<item android:color="?androidprv:attr/materialColorPrimary"/>
|
||||
</selector>
|
22
Settings/res/color/dream_card_summary_color_state_list.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
|
||||
<item android:state_selected="true" android:color="?androidprv:attr/materialColorOnPrimaryContainer"/>
|
||||
<item android:color="?androidprv:attr/materialColorOnSurfaceVariant"/>
|
||||
</selector>
|
22
Settings/res/color/dream_card_text_color_state_list.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2022 The Android Open Source Project
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
|
||||
<item android:state_selected="true" android:color="?androidprv:attr/materialColorOnPrimaryContainer"/>
|
||||
<item android:color="?androidprv:attr/materialColorOnSurface"/>
|
||||
</selector>
|
20
Settings/res/color/preference_highlight_color.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2018 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:alpha="0.26" android:color="?android:attr/colorAccent" />
|
||||
</selector>
|
18
Settings/res/color/settings_two_pane_background_color.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2022 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@android:color/system_neutral1_500" android:lStar="87" />
|
||||
</selector>
|
22
Settings/res/color/sliding_tab_title_text_color.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2016 Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="false"
|
||||
android:color="?android:attr/textColorSecondary"/>
|
||||
<item android:color="?android:attr/textColorPrimary"/>
|
||||
</selector>
|
BIN
Settings/res/drawable-hdpi/msg_bubble_incoming.9.png
Normal file
After Width: | Height: | Size: 469 B |
BIN
Settings/res/drawable-hdpi/msg_bubble_outgoing.9.png
Normal file
After Width: | Height: | Size: 472 B |
BIN
Settings/res/drawable-hdpi/transparency.png
Normal file
After Width: | Height: | Size: 159 B |
BIN
Settings/res/drawable-ldrtl-hdpi/msg_bubble_incoming.9.png
Normal file
After Width: | Height: | Size: 472 B |
BIN
Settings/res/drawable-ldrtl-hdpi/msg_bubble_outgoing.9.png
Normal file
After Width: | Height: | Size: 469 B |
BIN
Settings/res/drawable-ldrtl-mdpi/msg_bubble_incoming.9.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
Settings/res/drawable-ldrtl-mdpi/msg_bubble_outgoing.9.png
Normal file
After Width: | Height: | Size: 339 B |