summaryrefslogtreecommitdiffstats
path: root/docs/html/google
diff options
context:
space:
mode:
authorRicardo Cervera <rcervera@google.com>2014-10-20 14:29:42 -0700
committerRicardo Cervera-Navarro <rcervera@google.com>2014-11-20 19:51:25 +0000
commit25bf00bceed5b22f8750e68a45beb944a80773a8 (patch)
tree7da0f8f2768471d0643acd50a9ef4f243db849f0 /docs/html/google
parent05282133c7491fd2b5e8f3da05408ff0165df526 (diff)
downloadframeworks_base-25bf00bceed5b22f8750e68a45beb944a80773a8.zip
frameworks_base-25bf00bceed5b22f8750e68a45beb944a80773a8.tar.gz
frameworks_base-25bf00bceed5b22f8750e68a45beb944a80773a8.tar.bz2
docs: Fixes to the Data Layer Wear class.
Bug: 17917638 Bug: 17917145 Bug: 17931937 Bug: 17933032 Bug: 16899307 Change-Id: Iee9fd0a44cd40b9860cf242cbdaabac409882a15 (cherry picked from commit eff209d2c40221d2f9be2fd6b0c9cde51dd5362b)
Diffstat (limited to 'docs/html/google')
-rw-r--r--docs/html/google/play-services/setup.jd14
1 files changed, 12 insertions, 2 deletions
diff --git a/docs/html/google/play-services/setup.jd b/docs/html/google/play-services/setup.jd
index 180730d..d886454 100644
--- a/docs/html/google/play-services/setup.jd
+++ b/docs/html/google/play-services/setup.jd
@@ -60,7 +60,8 @@ to <a href="{@docRoot}sdk/installing/adding-packages.html">Adding SDK Packages</
<a href="{@docRoot}sdk/installing/studio-build.html">Building Your Project with
Gradle</a> for more information about Gradle.</p></li>
<li>Add a new build rule under <code>dependencies</code> for the latest version of
-<code>play-services</code>. For example:
+ <code>play-services</code>.
+ <p>For example, for mobile modules:</p>
<pre class="no-pretty-print">
apply plugin: 'android'
...
@@ -70,7 +71,16 @@ dependencies {
<strong>compile 'com.google.android.gms:play-services:6.1.+'</strong>
}
</pre>
-<p>Be sure you update this version number each time Google Play services is updated.</p>
+ <p>For wearable modules:</p>
+<pre class="no-pretty-print">
+apply plugin: 'android'
+...
+
+dependencies {
+ <strong>compile 'com.google.android.gms:play-services-wearable:6.1.+'</strong>
+}
+</pre>
+ <p>Be sure you update this version number each time Google Play services is updated.</p>
</li>
<li>Save the changes and click <strong>Sync Project with Gradle Files</strong>
<img src="{@docRoot}images/tools/sync-project.png" style="vertical-align:bottom;margin:0;height:19px" />