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<sample>
18    <name>DataLayer</name>
19    <group>Wearable</group>
20    <package>com.example.android.wearable.datalayer</package>
21
22    <minSdk>18</minSdk>
23
24    <minSdkVersionWear>23</minSdkVersionWear>
25
26    <multiDexEnabled>true</multiDexEnabled>
27
28    <androidX>true</androidX>
29
30    <dependency>androidx.legacy:legacy-support-v4:1.0.0</dependency>
31    <dependency>androidx.legacy:legacy-support-v13:1.0.0</dependency>
32
33    <dependency>androidx.cardview:cardview:1.0.0</dependency>
34    <dependency>androidx.appcompat:appcompat:1.0.2</dependency>
35    <dependency>androidx.recyclerview:recyclerview:1.0.0</dependency>
36    <dependency>androidx.percentlayout:percentlayout:1.0.0</dependency>
37
38    <dependency_wearable>androidx.wear:wear:1.0.0</dependency_wearable>
39    <dependency_wearable>androidx.recyclerview:recyclerview:1.0.0</dependency_wearable>
40    <dependency_wearable>androidx.percentlayout:percentlayout:1.0.0</dependency_wearable>
41    <dependency_wearable>androidx.legacy:legacy-support-v13:1.0.0</dependency_wearable>
42
43
44    <wearable>
45        <has_handheld_app>true</has_handheld_app>
46    </wearable>
47
48    <strings>
49        <intro>
50            <![CDATA[
51            Sample demonstrating the usage of the GoogleApiClient in order to send data
52            from a handheld device to a wearable. The data transmitted is a picture taken by
53            the user of the sample.
54            ]]>
55        </intro>
56    </strings>
57    <template src="base"/>
58    <template src="Wear"/>
59    <metadata>
60        <status>DEPRECATED</status>
61        <categories>UI, Wearable</categories>
62        <technologies>Android</technologies>
63        <languages>Java</languages>
64        <solutions>Mobile</solutions>
65        <level>ADVANCED</level>
66        <icon>Application/src/main/res/drawable-xxhdpi/ic_launcher.png</icon>
67        <screenshots>
68            <img>screenshots/phone_image.png</img>
69            <img>screenshots/wearable_background_image.png</img>
70        </screenshots>
71        <api_refs>
72            <ext>gms:com.google.android.gms.wearable.DataApi</ext>
73            <ext>gms:com.google.android.gms.wearable.DataEvent</ext>
74            <ext>gms:com.google.android.gms.wearable.WearableListenerService</ext>
75        </api_refs>
76        <description>
77            <![CDATA[
78Sample moved to [github.com/android/wear-os][1].
79
80[1]: https://github.com/android/wear-os
81]]>
82        </description>
83
84        <intro>
85            <![CDATA[
86This repo and all Wear OS samples have been moved to [github.com/android/wear-os][1]. Please check out the code there. Thank you!
87
88[1]: https://github.com/android/wear-os
89]]>
90        </intro>
91    </metadata>
92</sample>
93