1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright 2013 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<sample> 19 <name>WearAccessibilityApp</name> 20 <group>Wearable</group> 21 <package>com.example.android.wearable.wear.wearaccessibilityapp</package> 22 23 <minSdkVersionWear>24</minSdkVersionWear> 24 <compileSdkVersionWear>28</compileSdkVersionWear> 25 <targetSdkVersionWear>28</targetSdkVersionWear> 26 27 <multiDexEnabled>true</multiDexEnabled> 28 29 <androidX>true</androidX> 30 31 <dependency_wearable>androidx.wear:wear:1.0.0</dependency_wearable> 32 <dependency_wearable>androidx.legacy:legacy-support-v4:1.0.0</dependency_wearable> 33 <dependency_wearable>androidx.legacy:legacy-support-v13:1.0.0</dependency_wearable> 34 <dependency_wearable>androidx.constraintlayout:constraintlayout:1.1.3</dependency_wearable> 35 <dependency_wearable>androidx.appcompat:appcompat:1.0.2</dependency_wearable> 36 37 38 <strings> 39 <intro> 40 <![CDATA[ 41 Sample demostrates best practices for accessibility (a11y support). 42 ]]> 43 </intro> 44 </strings> 45 46 <template src="base-build" /> 47 <template src="Wear" /> 48 49 <metadata> 50 <!-- Values: {DRAFT | PUBLISHED | INTERNAL | DEPRECATED | SUPERCEDED} --> 51 <status>DEPRECATED</status> 52 <!-- See http://go/sample-categories for details on the next 4 fields. --> 53 <!-- Most samples just need to udpate the Categories field. This is a comma- 54 seperated list of topic tags. Unlike the old category system, samples 55 may have multiple categories, so feel free to add extras. Try to avoid 56 simply tagging everything with "UI". :)--> 57 <categories>Wearable</categories> 58 <technologies>Android</technologies> 59 <languages>Java</languages> 60 <solutions>Mobile</solutions> 61 <!-- Values: {BEGINNER | INTERMEDIATE | ADVANCED | EXPERT} --> 62 <!-- Beginner is for "getting started" type content, or essential content. 63 (e.g. "Hello World", activities, intents) 64 65 Intermediate is for content that covers material a beginner doesn't need 66 to know, but that a skilled developer is expected to know. 67 (e.g. services, basic styles and theming, sync adapters) 68 69 Advanced is for highly technical content geared towards experienced developers. 70 (e.g. performance optimizations, custom views, bluetooth) 71 72 Expert is reserved for highly technical or specialized content, and should 73 be used sparingly. (e.g. VPN clients, SELinux, custom instrumentation runners) --> 74 <level>INTERMEDIATE</level> 75 <!-- Dimensions: 512x512, PNG fomrat --> 76 <icon>screenshots/icon-web.png</icon> 77 <!-- Path to screenshots. Use <img> tags for each. --> 78 <screenshots> 79 <img>screenshots/main_screen.png</img> 80 <img>screenshots/progress_screen.png</img> 81 <img>screenshots/controls_screen.png</img> 82 </screenshots> 83 <!-- List of APIs that this sample should be cross-referenced under. Use <android> 84 for fully-qualified Framework class names ("android:" namespace). 85 86 Use <ext> for custom namespaces, if needed. See "Samples Index API" documentation 87 for more details. --> 88 <api_refs> 89 <android>android.support.wear.widget.WearableRecyclerView</android> 90 <android>android.preference.Preference</android> 91 <android>android.support.v4.app.NotificationCompat</android> 92 </api_refs> 93 94 <!-- 1-3 line description of the sample here. 95 96 Avoid simply rearranging the sample's title. What does this sample actually 97 accomplish, and how does it do it? --> 98 <description> 99 <![CDATA[ 100Sample moved to [github.com/android/wear-os][1]. 101 102[1]: https://github.com/android/wear-os 103]]> 104 </description> 105 106 <intro> 107 <![CDATA[ 108This repo and all Wear OS samples have been moved to [github.com/android/wear-os][1]. Please check out the code there. Thank you! 109 110[1]: https://github.com/android/wear-os 111]]> 112 </intro> 113 </metadata> 114</sample> 115