blob: 2f65e23e80fc7e284fca857cc049acd3a93d0cce [file] [log] [blame]
Benjamin Baxtera6e4a8a2017-03-21 16:00:16 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright 2017 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<sample>
18 <name>WearMessagingApp</name>
19 <group>Wearable</group> <!-- This field will be deprecated in the future
20 and replaced with the "categories" tags below. -->
21 <package>com.example.android.wearable.wear.messaging</package>
22
Benjamin Baxtere401fe02017-03-22 15:14:08 -070023 <minSdk>22</minSdk>
Benjamin Baxtera6e4a8a2017-03-21 16:00:16 -070024 <targetSdkVersion>25</targetSdkVersion>
25 <targetSdkVersionWear>25</targetSdkVersionWear>
26
27 <wearable>
28 <has_handheld_app>true</has_handheld_app>
29 </wearable>
30
31 <!-- Include additional dependencies here.-->
32 <!-- dependency>com.google.android.gms:play-services:5.0.+</dependency -->
33
34 <dependency>com.android.support:appcompat-v7:25.1.1</dependency>
35 <dependency>com.android.support:cardview-v7:25.1.1</dependency>
36 <dependency>com.android.support:design:25.1.1</dependency>
37
38 <!--<dependency>com.google.android.gms:play-services-wearable:10.2.0</dependency>-->
39 <dependency>com.google.android.gms:play-services-auth:10.2.0</dependency>
40
41 <dependency>com.github.bumptech.glide:glide:3.7.0</dependency>
42
43 <dependency_wearable>com.android.support:appcompat-v7:25.1.1</dependency_wearable>
44 <dependency_wearable>com.android.support:design:25.1.1</dependency_wearable>
45
46 <strings>
47 <intro>
48 <![CDATA[
49 Sample demonstrates best practices for building a messaging experience on Android Wear.
50 ]]>
51 </intro>
52 </strings>
53
54 <template src="Wear" />
55
56 <metadata>
57 <!-- Values: {DRAFT | PUBLISHED | INTERNAL | DEPRECATED | SUPERCEDED} -->
58 <status>DRAFT</status>
59 <!-- See http://go/sample-categories for details on the next 4 fields. -->
60 <!-- Most samples just need to udpate the Categories field. This is a comma-
61 seperated list of topic tags. Unlike the old category system, samples
62 may have multiple categories, so feel free to add extras. Try to avoid
63 simply tagging everything with "UI". :)-->
64 <categories>Wearable</categories>
65 <technologies>Android</technologies>
66 <languages>Java</languages>
67 <solutions>Mobile</solutions>
68 <!-- Values: {BEGINNER | INTERMEDIATE | ADVANCED | EXPERT} -->
69 <!-- Beginner is for "getting started" type content, or essential content.
70 (e.g. "Hello World", activities, intents)
71
72 Intermediate is for content that covers material a beginner doesn't need
73 to know, but that a skilled developer is expected to know.
74 (e.g. services, basic styles and theming, sync adapters)
75
76 Advanced is for highly technical content geared towards experienced developers.
77 (e.g. performance optimizations, custom views, bluetooth)
78
79 Expert is reserved for highly technical or specialized content, and should
80 be used sparingly. (e.g. VPN clients, SELinux, custom instrumentation runners) -->
81 <level>INTERMEDIATE</level>
82 <!-- Dimensions: 512x512, PNG fomrat -->
83 <icon>screenshots/icon-web.png</icon>
84 <!-- Path to screenshots. Use <img> tags for each. -->
85 <screenshots>
86 <img>screenshots/1-main.png</img>
87 <img>screenshots/2-settings.png</img>
88 </screenshots>
89 <!-- List of APIs that this sample should be cross-referenced under. Use <android>
90 for fully-qualified Framework class names ("android:" namespace).
91
92 Use <ext> for custom namespaces, if needed. See "Samples Index API" documentation
93 for more details. -->
94 <api_refs>
95 <android>android.app.ActionBar</android>
96 </api_refs>
97
98 <!-- 1-3 line description of the sample here.
99
100 Avoid simply rearranging the sample's title. What does this sample actually
101 accomplish, and how does it do it? -->
102 <description>
103 Sample demonstrating how to instantiate an ActionBar on Android, define
104 action items, and set an "up" navigation link. Uses the Support Library
105 for compatibility with pre-3.0 devices.
106 </description>
107
108 <!-- Multi-paragraph introduction to sample, from an educational point-of-view.
109 Makrdown formatting allowed. This will be used to generate a mini-article for the
110 sample on DAC. -->
111 <intro>
112 Long intro here.
113
114 Multi-paragraph introduction to sample, from an educational point-of-view.
115 *Makrdown* formatting allowed. See [Markdown Documentation][1]
116 for details.
117
118 [1]: http://daringfireball.net/projects/markdown/syntax
119 </intro>
120 </metadata>
121</sample>