You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
5.6 KiB
132 lines
5.6 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2013 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<sample>
|
|
<name>SpeedTracker</name>
|
|
<group>Wearable</group>
|
|
<package>com.example.android.wearable.speedtracker</package>
|
|
|
|
<minSdk>18</minSdk>
|
|
|
|
<minSdkVersionWear>23</minSdkVersionWear>
|
|
<multiDexEnabled>true</multiDexEnabled>
|
|
|
|
<wearable>
|
|
<has_handheld_app>true</has_handheld_app>
|
|
</wearable>
|
|
|
|
<androidX>true</androidX>
|
|
|
|
<dependency>com.google.android.material:material:1.0.0</dependency>
|
|
<dependency>androidx.legacy:legacy-support-v13:1.0.0</dependency>
|
|
<dependency>com.google.android.gms:play-services-maps:16.1.0</dependency>
|
|
<dependency>com.google.android.gms:play-services-location:16.0.0</dependency>
|
|
|
|
<dependency_wearable>androidx.wear:wear:1.0.0</dependency_wearable>
|
|
<dependency_wearable>androidx.legacy:legacy-support-v13:1.0.0</dependency_wearable>
|
|
<dependency_wearable>com.google.android.gms:play-services-location:16.0.0</dependency_wearable>
|
|
|
|
<strings>
|
|
<intro>
|
|
<![CDATA[
|
|
This sample uses the FusedLocation APIs of Google Play Services
|
|
to gather location and speed. The sample provides a simple screen that shows the
|
|
current speed of the device on the watch. User can set a speed
|
|
limit and if the speed approaches that limit, it changes the
|
|
color to yellow and if it exceeds the limit, it turns red. User
|
|
can also enable recording of coordinates and when it pairs back
|
|
with the phone, this data will be synced with the phone
|
|
component of the app and user can see a track made of those
|
|
coordinates on a map on the phone.
|
|
]]>
|
|
</intro>
|
|
</strings>
|
|
|
|
<template src="base"/>
|
|
<template src="WearPlusShared"/>
|
|
|
|
<metadata>
|
|
<!-- Values: {DRAFT | PUBLISHED | INTERNAL | DEPRECATED | SUPERCEDED} -->
|
|
<status>DEPRECATED</status>
|
|
<!-- See http://go/sample-categories for details on the next 4 fields. -->
|
|
<!-- Most samples just need to udpate the Categories field. This is a comma-
|
|
seperated list of topic tags. Unlike the old category system, samples
|
|
may have multiple categories, so feel free to add extras. Try to avoid
|
|
simply tagging everything with "UI". :)-->
|
|
<categories>GPS, Wearable</categories>
|
|
<technologies>Android</technologies>
|
|
<languages>Java</languages>
|
|
<solutions>Mobile</solutions>
|
|
<!-- Values: {BEGINNER | INTERMEDIATE | ADVANCED | EXPERT} -->
|
|
<!-- Beginner is for "getting started" type content, or essential content.
|
|
(e.g. "Hello World", activities, intents)
|
|
|
|
Intermediate is for content that covers material a beginner doesn't need
|
|
to know, but that a skilled developer is expected to know.
|
|
(e.g. services, basic styles and theming, sync adapters)
|
|
|
|
Advanced is for highly technical content geared towards experienced developers.
|
|
(e.g. performance optimizations, custom views, bluetooth)
|
|
|
|
Expert is reserved for highly technical or specialized content, and should
|
|
be used sparingly. (e.g. VPN clients, SELinux, custom instrumentation runners) -->
|
|
<level>INTERMEDIATE</level>
|
|
<!-- Dimensions: 512x512, PNG fomrat -->
|
|
|
|
<!-- List of APIs that this sample should be cross-referenced under. Use <android>
|
|
for fully-qualified Framework class names ("android:" namespace).
|
|
|
|
Use <ext> for custom namespaces, if needed. See "Samples Index API" documentation
|
|
for more details. -->
|
|
<api_refs>
|
|
<android>com.google.android.gms.maps.MapFragment</android>
|
|
<android>com.google.android.gms.common.ConnectionResult</android>
|
|
<android>com.google.android.gms.common.api.GoogleApiClient</android>
|
|
<android>com.google.android.gms.common.api.ResultCallback</android>
|
|
<android>com.google.android.gms.common.api.Status</android>
|
|
<android>com.google.android.gms.location.LocationListener</android>
|
|
<android>com.google.android.gms.location.LocationRequest</android>
|
|
<android>com.google.android.gms.location.LocationServices</android>
|
|
<android>com.google.android.gms.wearable.DataApi</android>
|
|
<android>com.google.android.gms.wearable.PutDataMapRequest</android>
|
|
<android>com.google.android.gms.wearable.PutDataRequest</android>
|
|
<android>com.google.android.gms.wearable.Wearable</android>
|
|
</api_refs>
|
|
|
|
<!-- 1-3 line description of the sample here.
|
|
|
|
Avoid simply rearranging the sample's title. What does this sample actually
|
|
accomplish, and how does it do it? -->
|
|
<description>
|
|
<![CDATA[
|
|
Sample moved to [github.com/android/wear-os][1].
|
|
|
|
[1]: https://github.com/android/wear-os
|
|
]]>
|
|
</description>
|
|
|
|
<intro>
|
|
<![CDATA[
|
|
This repo and all Wear OS samples have been moved to [github.com/android/wear-os][1]. Please check out the code there. Thank you!
|
|
|
|
[1]: https://github.com/android/wear-os
|
|
]]>
|
|
</intro>
|
|
</metadata>
|
|
|
|
</sample>
|