Home | History | Annotate | only in /developers/build/prebuilts/gradle/SpeedTracker
Up to higher level directory
NameDateSize
.google/24-Aug-2016
Application/24-Aug-2016
build.gradle24-Aug-201614
CONTRIB.md24-Aug-20161.6K
CONTRIBUTING.md24-Aug-20161.5K
gradle/24-Aug-2016
gradle.properties24-Aug-2016853
gradlew24-Aug-20165K
gradlew.bat24-Aug-20162.3K
LICENSE24-Aug-201631.5K
README24-Aug-2016554
README.md24-Aug-20162.2K
settings.gradle24-Aug-201648
Shared/24-Aug-2016
Wearable/24-Aug-2016

README

      1 In order to run this application, you need to install the
      2 wearable apk on a device that has GPS capabilities in
      3 hardware. In addition, you need to obtain an API key for
      4 using Map v2 APIs, see the following link for the details:
      5 https://developers.google.com/maps/documentation/android/start#get_an_android_certificate_and_the_google_maps_api_key
      6 After getting the key, find the following line in
      7 Application/src/main/res/values/strings.xml:
      8 
      9 <string name="map_v2_api_key">YOUR_MAP_V2_API_KEY</string>
     10 
     11 and replace YOUR_MAP_V2_API_KEY with your own key.
     12 
     13 

README.md

      1 
      2 Android Speed Tracker Sample
      3 ===================================
      4 
      5 This sample uses the FusedLocation APIs of Google Play Services
      6 on those devices that have a hardware GPS built in. In those
      7 cases, this sample provides a simple screen that shows the
      8 current speed of the device on the watch. User can set a speed
      9 limit and if the speed approaches that limit, it changes the
     10 color to yellow and if it exceeds the limit, it turns red. User
     11 can also enable recording of coordinates and when it pairs back
     12 with the phone, this data will be synced with the phone
     13 component of the app and user can see a track made of those
     14 coordinates on a map on the phone.
     15 
     16 Pre-requisites
     17 --------------
     18 
     19 - Android SDK 23
     20 - Android Build Tools v23.0.3
     21 - Android Support Repository
     22 
     23 Getting Started
     24 ---------------
     25 
     26 This sample uses the Gradle build system. To build this project, use the
     27 "gradlew build" command or use "Import Project" in Android Studio.
     28 
     29 Support
     30 -------
     31 
     32 - Google+ Community: https://plus.google.com/communities/105153134372062985968
     33 - Stack Overflow: http://stackoverflow.com/questions/tagged/android
     34 
     35 If you've found an error in this sample, please file an issue:
     36 https://github.com/googlesamples/android-Speed Tracker
     37 
     38 Patches are encouraged, and may be submitted by forking this project and
     39 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
     40 
     41 License
     42 -------
     43 
     44 Copyright 2016 The Android Open Source Project, Inc.
     45 
     46 Licensed to the Apache Software Foundation (ASF) under one or more contributor
     47 license agreements.  See the NOTICE file distributed with this work for
     48 additional information regarding copyright ownership.  The ASF licenses this
     49 file to you under the Apache License, Version 2.0 (the "License"); you may not
     50 use this file except in compliance with the License.  You may obtain a copy of
     51 the License at
     52 
     53 http://www.apache.org/licenses/LICENSE-2.0
     54 
     55 Unless required by applicable law or agreed to in writing, software
     56 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     57 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
     58 License for the specific language governing permissions and limitations under
     59 the License.
     60