Home | History | Annotate | Download | only in DataLayer
      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>PUBLISHED</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[
     78 This sample demonstrates how to work with a WearableListenerService,
     79 to produce and consume DataEvents and effectively work with the DataLayer.
     80 ]]>
     81         </description>
     82         <intro>
     83 <![CDATA[
     84 This sample demonstrates how to make a handheld and an Wear device communicate
     85 using the [DataApi][2].
     86 It does this by sending a picture between connected devices.
     87 
     88 An Activity is being used for both the connected devices which implement their parts of
     89 the required interfaces.
     90 
     91 It showcases how to use an [WearableListenerService][1] to consume DataEvents
     92 as well as implementations for various required listeners when using the [DataApi][2],
     93 [MessageApi][3] and [NodeApi][4].
     94 
     95 [1]: https://developer.android.com/reference/com/google/android/gms/wearable/WearableListenerService.html
     96 [2]: https://developer.android.com/reference/com/google/android/gms/wearable/DataApi.html
     97 [3]: https://developer.android.com/reference/com/google/android/gms/wearable/MessageApi.html
     98 [4]: https://developer.android.com/reference/com/google/android/gms/wearable/NodeApi.html
     99 ]]>
    100         </intro>
    101     </metadata>
    102 </sample>
    103