1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 ~ Copyright 2016 Google Inc. 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>WearVerifyRemoteApp</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.wearverifyremoteapp</package> 22 23 <!-- change minSdk if needed--> 24 <minSdk>23</minSdk> 25 <minSdkVersionWear>23</minSdkVersionWear> 26 <targetSdkVersion>27</targetSdkVersion> 27 <compileSdkVersionWear>26</compileSdkVersionWear> 28 <targetSdkVersionWear>26</targetSdkVersionWear> 29 30 <wearable> 31 <has_handheld_app>true</has_handheld_app> 32 </wearable> 33 34 <dependency>com.google.android.support:wearable:2.3.0</dependency> 35 36 37 <dependency_wearable>com.android.support:wear:27.1.0</dependency_wearable> 38 39 <!-- Include additional dependencies here.--> 40 <!-- dependency>com.google.android.gms:play-services:5.0.+</dependency --> 41 42 <strings> 43 <intro> 44<![CDATA[ 45Sample demonstrates best practices for checking if the remote version of your app is installed on a 46connected device. This enables standalone Wear apps to check if the phone app is installed 47and the other way around. 48]]> 49 </intro> 50 </strings> 51 <template src="base" /> 52 <template src="Wear"/> 53 54 <metadata> 55 <!-- Values: {DRAFT | PUBLISHED | INTERNAL | DEPRECATED | SUPERCEDED} --> 56 <status>PUBLISHED</status> 57 <!-- See http://go/sample-categories for details on the next 4 fields. --> 58 <!-- Most samples just need to udpate the Categories field. This is a comma- 59 seperated list of topic tags. Unlike the old category system, samples 60 may have multiple categories, so feel free to add extras. Try to avoid 61 simply tagging everything with "UI". :)--> 62 <categories>Getting Started, UI</categories> 63 <technologies>Android</technologies> 64 <languages>Java</languages> 65 <solutions>Mobile</solutions> 66 <!-- Values: {BEGINNER | INTERMEDIATE | ADVANCED | EXPERT} --> 67 <level>INTERMEDIATE</level> 68 <!-- Dimensions: 512x512, PNG fomrat --> 69 <icon>screenshots/icon-web.png</icon> 70 <!-- Path to screenshots. Use <img> tags for each. --> 71 <screenshots> 72 <img>screenshots/wear-1.png</img> 73 <img>screenshots/wear-2.png</img> 74 <img>screenshots/mobile-1.png</img> 75 <img>screenshots/mobile-2.png</img> 76 </screenshots> 77 <!-- List of APIs that this sample should be cross-referenced under. Use <android> 78 for fully-qualified Framework class names ("android:" namespace). 79 80 Use <ext> for custom namespaces, if needed. See "Samples Index API" documentation 81 for more details. --> 82 <api_refs> 83 <android>android.support.wearable.activity.WearableActivity</android> 84 <android>android.support.wearable.view.ConfirmationOverlay</android> 85 <android>com.google.android.gms.common.api.GoogleApiClient</android> 86 <android>com.google.android.gms.wearable.CapabilityApi</android> 87 <android>com.google.android.gms.wearable.CapabilityInfo</android> 88 <android>com.google.android.gms.wearable.Node</android> 89 <android>com.google.android.gms.wearable.Wearable</android> 90 <android>com.google.android.wearable.intent.RemoteIntent</android> 91 <android>com.google.android.wearable.playstore.PlayStoreAvailability</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 demonstrates best practices for checking if connected mobile device has your app installed 101from a Wear 2.+ standalone app and the other way around. 102]]> 103 </description> 104 105 <!-- Multi-paragraph introduction to sample, from an educational point-of-view. 106 Makrdown formatting allowed. This will be used to generate a mini-article for the 107 sample on DAC. --> 108 <intro> 109 <![CDATA[ 110Steps for trying out the sample: 111* Compile and install the mobile app onto your mobile device or emulator (for mobile 112scenario). 113* Compile and install the wearable app onto your Wear device or emulator (for Wear 114scenario). 115 116This sample demonstrate best practices for using PlayStoreAvailability and RemoteIntent to check 117if the mobile version of your app exists from within your Standalone Wear 2.+ app and the other 118way around. Scenarios: 119 1201. Launch Wear standalone app to verify if the mobile version is installed. If it is not, you will 121be able to open the Play Store on the remote mobile device from the app (if it has the Play Store). 122 1232. Launch Mobile app to verify if the Wear version is installed. If it is not, you will 124be able to open the Play Store on the remote Wear device from the app. 125 126Although there are two apps (Mobile and Wear), each should be looked at as a separate, standalone 127apps/experiences. 128]]> 129 </intro> 130 </metadata> 131</sample> 132