1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright 2019 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 18<resources> 19 <string name="biometric_test_app_name">Biometric Test App</string> 20 <string name="select_activity_label">Select a test activity:</string> 21 <string name="biometric_prompt_test_title">BiometricPrompt API Test</string> 22 <string name="auth_result_test_title">Authentication Result API Test</string> 23 24 <string name="biometric_prompt_title">Title</string> 25 <string name="biometric_prompt_subtitle">Subtitle</string> 26 <string name="biometric_prompt_description">Description</string> 27 <string name="biometric_prompt_negative_text">Negative button</string> 28 29 <string name="authenticator_types_label">Authenticator types:</string> 30 <string name="biometric_strong_label">BIOMETRIC_STRONG</string> 31 <string name="biometric_weak_label">BIOMETRIC_WEAK</string> 32 <string name="device_credential_label">DEVICE_CREDENTIAL</string> 33 <string name="identity_check_label" > IDENTITY_CHECK</string> 34 35 <string name="auth_type_label">Authentication type:</string> 36 <string name="class2_biometric_label">Class 2 biometric</string> 37 <string name="class3_biometric_label">Class 3 biometric</string> 38 <string name="credential_label">Credential only</string> 39 40 <string name="biometric_fallback_type_label">Biometric Fallback type</string> 41 <string name="device_credential_fallback">Device credential fallback</string> 42 <string name="negative_button_fallback">Negative button fallback</string> 43 44 <string name="body_content_type_label">Body content type</string> 45 <string name="plain_text">Plain text</string> 46 <string name="vertical_list">Vertical list</string> 47 <string name="more_options_button">Text with more options button(needs permission)</string> 48 49 <string name="other_options_label">Other options:</string> 50 <string name="cancel_config_change_label">Cancel on configuration changes</string> 51 <string name="require_confirmation_label">Require confirmation</string> 52 <string name="use_crypto_auth_label">Use crypto-based authentication</string> 53 54 <string name="authenticate_button_label">Authenticate</string> 55 <string name="can_authenticate_button_label">Can authenticate</string> 56 <string name="clear_log_label">Clear log</string> 57</resources> 58