Merge "Fix issue #7649590: Background windows sometimes not being hidden for secondary users" into jb-mr1.1-dev
diff --git a/core/java/android/bluetooth/BluetoothAdapter.java b/core/java/android/bluetooth/BluetoothAdapter.java
index f817fb4..6367e16 100755
--- a/core/java/android/bluetooth/BluetoothAdapter.java
+++ b/core/java/android/bluetooth/BluetoothAdapter.java
@@ -1212,7 +1212,7 @@
     final private IBluetoothManagerCallback mManagerCallback =
         new IBluetoothManagerCallback.Stub() {
             public void onBluetoothServiceUp(IBluetooth bluetoothService) {
-                if (DBG) Log.d(TAG, "onBluetoothServiceUp: " + bluetoothService);
+                if (VDBG) Log.d(TAG, "onBluetoothServiceUp: " + bluetoothService);
                 synchronized (mManagerCallback) {
                     mService = bluetoothService;
                     for (IBluetoothManagerCallback cb : mProxyServiceStateCallbacks ){
@@ -1228,7 +1228,7 @@
             }
 
             public void onBluetoothServiceDown() {
-                if (DBG) Log.d(TAG, "onBluetoothServiceDown: " + mService);
+                if (VDBG) Log.d(TAG, "onBluetoothServiceDown: " + mService);
                 synchronized (mManagerCallback) {
                     mService = null;
                     for (IBluetoothManagerCallback cb : mProxyServiceStateCallbacks ){
diff --git a/core/java/android/bluetooth/BluetoothSocket.java b/core/java/android/bluetooth/BluetoothSocket.java
index d7a214d..8029a1a 100644
--- a/core/java/android/bluetooth/BluetoothSocket.java
+++ b/core/java/android/bluetooth/BluetoothSocket.java
@@ -429,7 +429,7 @@
 
     @Override
     public void close() throws IOException {
-        Log.d(TAG, "close() in, this: " + this + ", channel: " + mPort + ", state: " + mSocketState);
+        if (VDBG) Log.d(TAG, "close() in, this: " + this + ", channel: " + mPort + ", state: " + mSocketState);
         if(mSocketState == SocketState.CLOSED)
             return;
         else
diff --git a/core/java/android/widget/RemoteViewsAdapter.java b/core/java/android/widget/RemoteViewsAdapter.java
index c122bb2..499f6ad 100644
--- a/core/java/android/widget/RemoteViewsAdapter.java
+++ b/core/java/android/widget/RemoteViewsAdapter.java
@@ -21,6 +21,7 @@
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.LinkedList;
+
 import android.appwidget.AppWidgetManager;
 import android.content.Context;
 import android.content.Intent;
@@ -33,7 +34,6 @@
 import android.os.RemoteException;
 import android.os.UserHandle;
 import android.util.Log;
-import android.util.Pair;
 import android.view.LayoutInflater;
 import android.view.View;
 import android.view.View.MeasureSpec;
@@ -90,13 +90,15 @@
     private Handler mMainQueue;
 
     // We cache the FixedSizeRemoteViewsCaches across orientation. These are the related data
-    // structures;
-    private static final HashMap<Pair<Intent.FilterComparison, Integer>, FixedSizeRemoteViewsCache>
-            sCachedRemoteViewsCaches = new HashMap<Pair<Intent.FilterComparison, Integer>,
+    // structures; 
+    private static final HashMap<RemoteViewsCacheKey,
+            FixedSizeRemoteViewsCache> sCachedRemoteViewsCaches
+            = new HashMap<RemoteViewsCacheKey,
                     FixedSizeRemoteViewsCache>();
-    private static final HashMap<Pair<Intent.FilterComparison, Integer>, Runnable>
-            sRemoteViewsCacheRemoveRunnables = new HashMap<Pair<Intent.FilterComparison, Integer>,
-            Runnable>();
+    private static final HashMap<RemoteViewsCacheKey, Runnable>
+            sRemoteViewsCacheRemoveRunnables
+            = new HashMap<RemoteViewsCacheKey, Runnable>();
+
     private static HandlerThread sCacheRemovalThread;
     private static Handler sCacheRemovalQueue;
 
@@ -771,6 +773,33 @@
         }
     }
 
+    static class RemoteViewsCacheKey {
+        final Intent.FilterComparison filter;
+        final int widgetId;
+        final int userId;
+
+        RemoteViewsCacheKey(Intent.FilterComparison filter, int widgetId, int userId) {
+            this.filter = filter;
+            this.widgetId = widgetId;
+            this.userId = userId;
+        }
+
+        @Override
+        public boolean equals(Object o) {
+            if (!(o instanceof RemoteViewsCacheKey)) {
+                return false;
+            }
+            RemoteViewsCacheKey other = (RemoteViewsCacheKey) o;
+            return other.filter.equals(filter) && other.widgetId == widgetId
+                    && other.userId == userId;
+        }
+
+        @Override
+        public int hashCode() {
+            return (filter == null ? 0 : filter.hashCode()) ^ (widgetId << 2) ^ (userId << 10);
+        }
+    }
+
     public RemoteViewsAdapter(Context context, Intent intent, RemoteAdapterConnectionCallback callback) {
         mContext = context;
         mIntent = intent;
@@ -786,7 +815,6 @@
         } else {
             mUserId = UserHandle.myUserId();
         }
-
         // Strip the previously injected app widget id from service intent
         if (intent.hasExtra(RemoteViews.EXTRA_REMOTEADAPTER_APPWIDGET_ID)) {
             intent.removeExtra(RemoteViews.EXTRA_REMOTEADAPTER_APPWIDGET_ID);
@@ -808,8 +836,8 @@
         mCallback = new WeakReference<RemoteAdapterConnectionCallback>(callback);
         mServiceConnection = new RemoteViewsAdapterServiceConnection(this);
 
-        Pair<Intent.FilterComparison, Integer> key = new Pair<Intent.FilterComparison, Integer>
-                (new Intent.FilterComparison(mIntent), mAppWidgetId);
+        RemoteViewsCacheKey key = new RemoteViewsCacheKey(new Intent.FilterComparison(mIntent),
+                mAppWidgetId, mUserId);
 
         synchronized(sCachedRemoteViewsCaches) {
             if (sCachedRemoteViewsCaches.containsKey(key)) {
@@ -850,8 +878,8 @@
     }
 
     public void saveRemoteViewsCache() {
-        final Pair<Intent.FilterComparison, Integer> key = new Pair<Intent.FilterComparison,
-                Integer> (new Intent.FilterComparison(mIntent), mAppWidgetId);
+        final RemoteViewsCacheKey key = new RemoteViewsCacheKey(
+                new Intent.FilterComparison(mIntent), mAppWidgetId, mUserId);
 
         synchronized(sCachedRemoteViewsCaches) {
             // If we already have a remove runnable posted for this key, remove it.
diff --git a/docs/html/about/dashboards/index.jd b/docs/html/about/dashboards/index.jd
index edf1f41..7282dbb 100644
--- a/docs/html/about/dashboards/index.jd
+++ b/docs/html/about/dashboards/index.jd
@@ -32,29 +32,31 @@
 </tr>
 <tr><td><a href="/about/versions/android-1.5.html">1.5</a></td><td>Cupcake</td>  <td>3</td><td>0.1%</td></tr>
 <tr><td><a href="/about/versions/android-1.6.html">1.6</a></td><td>Donut</td>    <td>4</td><td>0.3%</td></tr>
-<tr><td><a href="/about/versions/android-2.1.html">2.1</a></td><td>Eclair</td>   <td>7</td><td>3.1%</td></tr>
-<tr><td><a href="/about/versions/android-2.2.html">2.2</a></td><td>Froyo</td>    <td>8</td><td>12%</td></tr>
+<tr><td><a href="/about/versions/android-2.1.html">2.1</a></td><td>Eclair</td>   <td>7</td><td>2.7%</td></tr>
+<tr><td><a href="/about/versions/android-2.2.html">2.2</a></td><td>Froyo</td>    <td>8</td><td>10.3%</td></tr>
 <tr><td><a href="/about/versions/android-2.3.html">2.3 - 2.3.2</a>
-                                   </td><td rowspan="2">Gingerbread</td>    <td>9</td><td>0.3%</td></tr>
+                                   </td><td rowspan="2">Gingerbread</td>    <td>9</td><td>0.2%</td></tr>
 <tr><td><a href="/about/versions/android-2.3.3.html">2.3.3 - 2.3.7
-        </a></td><!-- Gingerbread -->                                       <td>10</td><td>53.9%</td></tr>
+        </a></td><!-- Gingerbread -->                                       <td>10</td><td>50.6%</td></tr>
 <tr><td><a href="/about/versions/android-3.1.html">3.1</a></td>
                                                    <td rowspan="2">Honeycomb</td>      <td>12</td><td>0.4%</td></tr>
-<tr><td><a href="/about/versions/android-3.2.html">3.2</a></td>      <!-- Honeycomb --><td>13</td><td>1.4%</td></tr>
+<tr><td><a href="/about/versions/android-3.2.html">3.2</a></td>      <!-- Honeycomb --><td>13</td><td>1.2%</td></tr>
 <tr><td><a href="/about/versions/android-4.0.3.html">4.0.3 - 4.0.4</a></td>
-                                                            <td>Ice Cream Sandwich</td><td>15</td><td>25.8%</td></tr> 
-<tr><td><a href="/about/versions/android-4.1.html">4.1</a></td>   <td>Jelly Bean</td><td>16</td><td>2.7%</td></tr> 
+                                                            <td>Ice Cream Sandwich</td><td>15</td><td>27.5%</td></tr> 
+<tr><td><a href="/about/versions/android-4.1.html">4.1</a></td>
+                                                   <td rowspan="2">Jelly Bean</td><td>16</td><td>5.9%</td></tr>
+<tr><td><a href="/about/versions/android-4.2.html">4.2</a></td><!--Jelly Bean-->  <td>17</td><td>0.8%</td></tr>  
 </table>
 
 </div>
 
 <div class="col-8" style="margin-right:0">
 <img alt=""
-src="http://chart.apis.google.com/chart?&cht=p&chs=460x245&chd=t:3.5,12,54.2,1.8,25.8,2.7&chl=Eclair%20%26%20older|Froyo|Gingerbread|Honeycomb|Ice%20Cream%20Sandwich|Jelly%20Bean&chco=c4df9b,6fad0c&chf=bg,s,00000000" />
+src="http://chart.apis.google.com/chart?&cht=p&chs=460x245&chf=bg,s,00000000&chd=t:3.1,10.3,50.8,1.6,27.5,6.7&chl=Eclair%20%26%20older|Froyo|Gingerbread|Honeycomb|Ice%20Cream%20Sandwich|Jelly%20Bean&chco=c4df9b,6fad0c" />
 
 </div><!-- end dashboard-panel -->
 
-<p style="clear:both"><em>Data collected during a 14-day period ending on November 1, 2012</em></p>
+<p style="clear:both"><em>Data collected during a 14-day period ending on December 3, 2012</em></p>
 <!--
 <p style="font-size:.9em">* <em>Other: 0.1% of devices running obsolete versions</em></p>
 -->
@@ -79,9 +81,9 @@
 Google Play within a 14-day period ending on the date indicated on the x-axis.</p>
 
 <img alt="" height="250" width="660"
-src="http://chart.apis.google.com/chart?&cht=lc&chs=660x250&chxt=x,x,y,r&chf=bg,s,00000000&chxr=0,0,12|1,0,12|2,0,100|3,0,100&chxl=0%3A%7C05/01%7C05/15%7C06/01%7C06/15%7C07/01%7C07/15%7C08/01%7C08/15%7C09/01%7C09/15%7C10/01%7C10/15%7C11/01%7C1%3A%7C2012%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C2012%7C2%3A%7C0%25%7C25%25%7C50%25%7C75%25%7C100%25%7C3%3A%7C0%25%7C25%25%7C50%25%7C75%25%7C100%25&chxp=0,0,1,2,3,4,5,6,7,8,9,10,11,12&chxtc=0,5&chd=t:98.1,98.1,98.3,98.5,98.6,98.7,98.9,98.9,99.0,99.1,99.2,99.2,99.2|92.5,92.7,93.1,93.5,93.9,94.2,94.7,94.9,95.3,95.5,95.8,96.0,96.1|71.5,72.6,74.0,75.2,76.5,77.8,79.2,80.1,81.1,82.0,82.9,83.5,84.4|7.6,8.2,9.4,11.0,12.8,15.6,18.9,21.2,23.7,25.5,27.4,28.7,31.1|6.6,7.4,8.7,10.4,12.3,15.1,18.4,20.7,23.2,25.1,27.0,28.3,30.7|4.4,5.3,6.7,8.4,10.4,13.2,16.6,19.0,21.5,23.5,25.5,26.8,29.4|0.0,0.0,0.0,0.0,0.0,0.0,0.8,0.9,1.1,1.4,1.8,2.1,3.2&chm=b,c3df9b,0,1,0|tAndroid%202.2,6c9729,1,0,15,,t::-5|b,b6dc7d,1,2,0|tAndroid%202.3.3,5b831d,2,0,15,,t::-5|b,aadb5e,2,3,0|b,9ddb3d,3,4,0|b,91da1e,4,5,0|tAndroid%204.0.3,253a06,5,4,15,,t::-5|b,80c414,5,6,0|B,6fad0c,6,7,0&chg=7,25&chdl=Android%202.1|Android%202.2|Android%202.3.3|Android%203.1|Android%203.2|Android%204.0.3|Android%204.1&chco=add274,a0d155,94d134,84c323,73ad18,62960f,507d08"/>
-
-<p><em>Last historical dataset collected during a 14-day period ending on November 1, 2012</em></p>
+src="http://chart.apis.google.com/chart?&cht=lc&chs=660x250&chxt=x,x,y,r&chf=bg,s,00000000&chxr=0,0,12|1,0,12|2,0,100|3,0,100&chxl=0%3A%7C06/01%7C06/15%7C07/01%7C07/15%7C08/01%7C08/15%7C09/01%7C09/15%7C10/01%7C10/15%7C11/01%7C11/15%7C12/01%7C1%3A%7C2012%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C2012%7C2%3A%7C0%25%7C25%25%7C50%25%7C75%25%7C100%25%7C3%3A%7C0%25%7C25%25%7C50%25%7C75%25%7C100%25&chxp=0,0,1,2,3,4,5,6,7,8,9,10,11,12&chxtc=0,5&chd=t:99.1,99.2,99.2,99.2,99.2,99.2,99.3,99.4,99.5,99.5,99.5,99.6,100.0|93.9,94.2,94.5,94.7,95.0,95.2,95.6,95.8,96.1,96.3,96.4,96.7,96.9|74.8,75.9,77.1,78.3,79.5,80.4,81.4,82.3,83.2,83.8,84.7,85.6,86.4|9.8,11.3,13.0,15.7,18.9,21.2,23.7,25.5,27.4,28.7,31.1,33.0,35.4|7.1,8.7,10.6,13.3,16.6,19.0,21.5,23.5,25.5,26.8,29.4,31.4,33.8|0.0,0.0,0.0,0.0,0.8,0.9,1.1,1.4,1.8,2.1,3.2,4.8,6.5&chm=b,c3df9b,0,1,0|tFroyo,689326,1,0,15,,t::-5|b,b4db77,1,2,0|tGingerbread,547a19,2,0,15,,t::-5|b,a5db51,2,3,0|b,96dd28,3,4,0|tIce%20Cream%20Sandwich,293f07,4,2,15,,t::-5|b,83c916,4,5,0|B,6fad0c,5,6,0&chg=7,25&chdl=Eclair|Froyo|Gingerbread|Honeycomb|Ice%20Cream%20Sandwich|Jelly%20Bean&chco=add274,9dd14f,8ece2a,7ab61c,659b11,507d08"
+/>
+<p><em>Last historical dataset collected during a 14-day period ending on December 1, 2012</em></p>
 
 
 
@@ -116,6 +118,7 @@
 <img alt="" style="float:right;clear:right"
 src="http://chart.googleapis.com/chart?cht=p&chs=400x250&chf=bg,s,00000000&chco=c4df9b,6fad0c&chl=ldpi%7Cmdpi%7Chdpi%7Cxhdpi&chd=t%3A2.2,18,51.1,28.7" />
 
+
 <p>This section provides data about the relative number of active devices that have a particular
 screen configuration, defined by a combination of screen size and density. To simplify the way that
 you design your user interfaces for different screen configurations, Android divides the range of
diff --git a/docs/html/develop/index.jd b/docs/html/develop/index.jd
index 153ebcb..3ca7b80 100644
--- a/docs/html/develop/index.jd
+++ b/docs/html/develop/index.jd
@@ -37,7 +37,7 @@
                                            max-width:409px;width:409px" />
                  </div>
                 <div class="content-right col-6" style="width:350px">
-                  <h2>New MapView APIs!</h2>
+                  <h2>New Google Maps Android APIs!</h2>
                   <p>Google Maps Android API version 2 is now available with enhanced
                     features such as 3D buildings, vector-based map tiles, rich overlay capabilities,
                     indoor maps, support for fragments, and much more.</p>
diff --git a/docs/html/distribute/googleplay/about/visibility.jd b/docs/html/distribute/googleplay/about/visibility.jd
index 2ff1293..4957c0f 100644
--- a/docs/html/distribute/googleplay/about/visibility.jd
+++ b/docs/html/distribute/googleplay/about/visibility.jd
@@ -4,7 +4,7 @@
 @jd:body
     
 <div style="float:right;margin:0px 0px 24px 0px;">
-  <img src="{@docRoot}images/gp-tab.png" style="width:420px" style>
+  <img src="{@docRoot}images/gp-tab.png" style="width:420px" alt="" />
 </div>
 
 <p>A billion downloads a month and growing. Get your apps in front of millions
diff --git a/docs/html/google/google_toc.cs b/docs/html/google/google_toc.cs
index 22942dd..bb9cb50 100644
--- a/docs/html/google/google_toc.cs
+++ b/docs/html/google/google_toc.cs
@@ -15,7 +15,7 @@
 
   <li class="nav-section">
     <div class="nav-section-header"><a href="<?cs var:toroot ?>google/play-services/index.html">
-      <span class="en">Google Play services</span></a>
+      <span class="en">Google Play Services</span></a>
     </div>
     <ul>
       <li><a href="<?cs var:toroot?>google/play-services/setup.html">
diff --git a/docs/html/google/index.jd b/docs/html/google/index.jd
index e2f8f9d..1c83e78 100644
--- a/docs/html/google/index.jd
+++ b/docs/html/google/index.jd
@@ -28,10 +28,10 @@
 build new revenue streams, manage app distribution,
 track app usage, and enhance your app with features such as maps, sign-in, and
 cloud messaging.</p>
-  <p>Because these services are offered directly by Google, they're not included in
-  the Android platform. Some are provided by the Google Play
-  service available on devices with Google Play,
-  and others require a library added to your app.</p>
+  <p>Although these Google services are not included in the Android platform, they are
+  supported by most Android-powered devices. When using these services, you can
+  distribute your app on Google Play to all devices running Android 2.2
+  or higher, and some services support even more devices.</p>
 </div>
 </div>
 <div>&nbsp;</div>
diff --git a/docs/html/google/play-services/index.jd b/docs/html/google/play-services/index.jd
index 263f4b0..fae1e1a 100644
--- a/docs/html/google/play-services/index.jd
+++ b/docs/html/google/play-services/index.jd
@@ -1,4 +1,4 @@
-page.title=Google Play services
+page.title=Google Play Services
 header.hide=1
 
 @jd:body
@@ -10,7 +10,7 @@
 </div>
 <div class="col-6">
 
-  <h1 itemprop="name" style="margin-bottom:0;">Google Play services</h1>
+  <h1 itemprop="name" style="margin-bottom:0;">Google Play Services</h1>
   <p itemprop="description"> 
   </p>
 
@@ -56,7 +56,7 @@
 
 
    <p>To start integrating Google Play services into your app,
-   follow the <a href="/google/play-services/download.html">Setup</a> guide.</p>
+   follow the <a href="/google/play-services/setup.html">Setup</a> guide.</p>
 
 </div>
 
diff --git a/docs/html/google/play-services/setup.jd b/docs/html/google/play-services/setup.jd
index ec5d26f..2994c2c 100644
--- a/docs/html/google/play-services/setup.jd
+++ b/docs/html/google/play-services/setup.jd
@@ -8,34 +8,55 @@
     Manager</a>. The download includes the client library and code samples.
 </p>
 
-<p>
-    To set up the Google Play services SDK:
-</p>
+<p>You must download the Google Play services SDK in order to develop using the
+<a href="{@docRoot}reference/gms-packages.html">Google Play services APIs</a>. However, <strong>you
+cannot use the Android emulator</strong> to test an app that depends on the Google Play services
+APIs&mdash;you must use a real device running Android 2.2 or higher that includes
+Google Play Store.</p>
+
+
+<p>To install the Google Play services SDK for development:</p>
 
 <ol>
-    <li>
-        Launch Eclipse and select <b>Window &gt; Android SDK Manager</b> or run <code>android</code>
-        at the command line.
-    </li>
-    <li>
-        Scroll to the bottom of the package list and select <b>Extras &gt; Google Play services</b>.
-        The Google Play services SDK is downloaded to your computer and installed in your Android SDK environment at
-        <code>&lt;android-sdk-folder&gt;/extras/google/google_play_services/</code>.
-    </li>
-    <li>Copy the <code>&lt;android-sdk-folder&gt;/extras/google/google_play_services/libproject/google-play-services_lib</code>        
-        library project to a location in your project's source tree.
-    <p>If you are using Eclipse, import the library project into your workspace. Click <b>File > Import...</b>, select <b>Android > Existing
-    Android Code into Workspace</b>, and browse to the copy of the library project to import it.</p>
-    </li>
-    <li>Reference the library project in your Android project.
-        <p>See the 
-        <a href="{@docRoot}tools/projects/projects-eclipse.html#ReferencingLibraryProject">Referencing a Library Project for Eclipse</a>
-        or <a href="{@docRoot}tools/projects/projects-cmdline.html#ReferencingLibraryProject">Referencing a Library Project on the Command Line</a>
-        for more information on how to do this.</p>
-    </li>
-    <li>If you are using <a href="{@docRoot}tools/help/proguard.html">ProGuard</a>, add the following
-        lines in the <code>&lt;project_directory&gt;/proguard-project.txt</code> file
-        to prevent ProGuard from stripping away required classes:
+  <li>Launch the SDK Manager.
+   <ul>
+    <li>From Eclipse (with <a href="{@docRoot}tools/help/adt.html">ADT</a>),
+    select <strong>Window</strong> &gt; <strong>Android SDK Manager</strong>.</li>
+    <li>On Windows, double-click the <code>SDK Manager.exe</code> file at the root of the Android
+  SDK directory.</li>
+    <li>On Mac or Linux, open a terminal and navigate to the <code>tools/</code> directory in the
+  Android SDK, then execute <code>android sdk</code>.</li>
+    </ul>
+  </li>
+  <li>
+      Scroll to the bottom of the package list, select <b>Extras &gt; Google Play services</b>,
+      and install it.
+      <p>The Google Play services SDK is saved in your Android SDK environment at
+      <code>&lt;android-sdk-folder&gt;/extras/google/google_play_services/</code>.</p>
+  </li>
+  <li>Copy the <code>&lt;android-sdk-folder&gt;/extras/google/google_play_services/libproject/google-play-services_lib</code>        
+      library project into the source tree where you maintain your Android app projects.
+  <p>If you are using Eclipse, import the library project into your workspace. Click <b>File > Import</b>, select <b>Android > Existing
+  Android Code into Workspace</b>, and browse to the copy of the library project to import it.</p>
+  </li>
+</ol>
+
+
+<p>To set up a project to use the Google Play services SDK:</p>
+
+<ol>
+  <li>Reference the library project in your Android project.
+      <p>See the 
+      <a href="{@docRoot}tools/projects/projects-eclipse.html#ReferencingLibraryProject">Referencing a Library Project for Eclipse</a>
+      or <a href="{@docRoot}tools/projects/projects-cmdline.html#ReferencingLibraryProject">Referencing a Library Project on the Command Line</a>
+      for more information on how to do this.</p>
+      <p class="note"><strong>Note:</strong>
+      You should be referencing a copy of the library that you copied to your
+      source tree&mdash;you should not reference the library from the Android SDK directory.</p>
+  </li>
+  <li>If you are using <a href="{@docRoot}tools/help/proguard.html">ProGuard</a>, add the following
+      lines in the <code>&lt;project_directory&gt;/proguard-project.txt</code> file
+      to prevent ProGuard from stripping away required classes:
 <pre>
 -keep class * extends java.util.ListResourceBundle {
     protected Object[][] getContents();
diff --git a/docs/html/reference/com/google/android/gcm/GCMBaseIntentService.html b/docs/html/reference/com/google/android/gcm/GCMBaseIntentService.html
index 2995096..1be991f 100644
--- a/docs/html/reference/com/google/android/gcm/GCMBaseIntentService.html
+++ b/docs/html/reference/com/google/android/gcm/GCMBaseIntentService.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -5547,7 +5547,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/GCMBroadcastReceiver.html b/docs/html/reference/com/google/android/gcm/GCMBroadcastReceiver.html
index 9e8cc56..59a027a 100644
--- a/docs/html/reference/com/google/android/gcm/GCMBroadcastReceiver.html
+++ b/docs/html/reference/com/google/android/gcm/GCMBroadcastReceiver.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1481,7 +1481,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/GCMConstants.html b/docs/html/reference/com/google/android/gcm/GCMConstants.html
index a33ba73..d6e5c26 100644
--- a/docs/html/reference/com/google/android/gcm/GCMConstants.html
+++ b/docs/html/reference/com/google/android/gcm/GCMConstants.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -2006,7 +2006,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/GCMRegistrar.html b/docs/html/reference/com/google/android/gcm/GCMRegistrar.html
index 60cac95..e2a166a 100644
--- a/docs/html/reference/com/google/android/gcm/GCMRegistrar.html
+++ b/docs/html/reference/com/google/android/gcm/GCMRegistrar.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1685,7 +1685,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/package-summary.html b/docs/html/reference/com/google/android/gcm/package-summary.html
index a9cc894..fc8f89e 100644
--- a/docs/html/reference/com/google/android/gcm/package-summary.html
+++ b/docs/html/reference/com/google/android/gcm/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -600,7 +600,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/Constants.html b/docs/html/reference/com/google/android/gcm/server/Constants.html
index 033a7c9..43d3c46 100644
--- a/docs/html/reference/com/google/android/gcm/server/Constants.html
+++ b/docs/html/reference/com/google/android/gcm/server/Constants.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -2291,7 +2291,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/InvalidRequestException.html b/docs/html/reference/com/google/android/gcm/server/InvalidRequestException.html
index cd48dff..b744a0b 100644
--- a/docs/html/reference/com/google/android/gcm/server/InvalidRequestException.html
+++ b/docs/html/reference/com/google/android/gcm/server/InvalidRequestException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1451,7 +1451,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/Message.Builder.html b/docs/html/reference/com/google/android/gcm/server/Message.Builder.html
index 66cb930..52f54cc 100644
--- a/docs/html/reference/com/google/android/gcm/server/Message.Builder.html
+++ b/docs/html/reference/com/google/android/gcm/server/Message.Builder.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1263,7 +1263,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/Message.html b/docs/html/reference/com/google/android/gcm/server/Message.html
index 766650d..95a54f6 100644
--- a/docs/html/reference/com/google/android/gcm/server/Message.html
+++ b/docs/html/reference/com/google/android/gcm/server/Message.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1267,7 +1267,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/MulticastResult.html b/docs/html/reference/com/google/android/gcm/server/MulticastResult.html
index 5c3ecd4..d02e940 100644
--- a/docs/html/reference/com/google/android/gcm/server/MulticastResult.html
+++ b/docs/html/reference/com/google/android/gcm/server/MulticastResult.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1361,7 +1361,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/Result.html b/docs/html/reference/com/google/android/gcm/server/Result.html
index e469e14..27f9c2f 100644
--- a/docs/html/reference/com/google/android/gcm/server/Result.html
+++ b/docs/html/reference/com/google/android/gcm/server/Result.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -1190,7 +1190,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/Sender.html b/docs/html/reference/com/google/android/gcm/server/Sender.html
index e9f7311..1024c69 100644
--- a/docs/html/reference/com/google/android/gcm/server/Sender.html
+++ b/docs/html/reference/com/google/android/gcm/server/Sender.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -2077,7 +2077,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gcm/server/package-summary.html b/docs/html/reference/com/google/android/gcm/server/package-summary.html
index 05abef7..a1405cf 100644
--- a/docs/html/reference/com/google/android/gcm/server/package-summary.html
+++ b/docs/html/reference/com/google/android/gcm/server/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -617,7 +617,7 @@
   </div>
   <div id="build_info">
     
-    Android &nbsp;r &mdash; 02 Dec 2012 17:05
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/R.attr.html b/docs/html/reference/com/google/android/gms/R.attr.html
index ba46d48..771b1ce 100644
--- a/docs/html/reference/com/google/android/gms/R.attr.html
+++ b/docs/html/reference/com/google/android/gms/R.attr.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1663,7 +1663,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/R.html b/docs/html/reference/com/google/android/gms/R.html
index 4172529..b7082ed 100644
--- a/docs/html/reference/com/google/android/gms/R.html
+++ b/docs/html/reference/com/google/android/gms/R.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1068,7 +1068,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/R.id.html b/docs/html/reference/com/google/android/gms/R.id.html
index f99f11e..9dff483 100644
--- a/docs/html/reference/com/google/android/gms/R.id.html
+++ b/docs/html/reference/com/google/android/gms/R.id.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1184,7 +1184,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/R.string.html b/docs/html/reference/com/google/android/gms/R.string.html
index b4b7eda..ec4d1a7 100644
--- a/docs/html/reference/com/google/android/gms/R.string.html
+++ b/docs/html/reference/com/google/android/gms/R.string.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1496,7 +1496,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/R.styleable.html b/docs/html/reference/com/google/android/gms/R.styleable.html
index 8dcbcea..fa98dbc 100644
--- a/docs/html/reference/com/google/android/gms/R.styleable.html
+++ b/docs/html/reference/com/google/android/gms/R.styleable.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1886,7 +1886,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/auth/GoogleAuthException.html b/docs/html/reference/com/google/android/gms/auth/GoogleAuthException.html
index 00398bf..384b41d 100644
--- a/docs/html/reference/com/google/android/gms/auth/GoogleAuthException.html
+++ b/docs/html/reference/com/google/android/gms/auth/GoogleAuthException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1341,7 +1341,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/auth/GoogleAuthUtil.html b/docs/html/reference/com/google/android/gms/auth/GoogleAuthUtil.html
index f85806f..1a481ca 100644
--- a/docs/html/reference/com/google/android/gms/auth/GoogleAuthUtil.html
+++ b/docs/html/reference/com/google/android/gms/auth/GoogleAuthUtil.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1950,7 +1950,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/auth/GooglePlayServicesAvailabilityException.html b/docs/html/reference/com/google/android/gms/auth/GooglePlayServicesAvailabilityException.html
index afd7c1c..e57826a 100644
--- a/docs/html/reference/com/google/android/gms/auth/GooglePlayServicesAvailabilityException.html
+++ b/docs/html/reference/com/google/android/gms/auth/GooglePlayServicesAvailabilityException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1366,7 +1366,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/auth/UserRecoverableAuthException.html b/docs/html/reference/com/google/android/gms/auth/UserRecoverableAuthException.html
index 12a3e5c8..13c6a32 100644
--- a/docs/html/reference/com/google/android/gms/auth/UserRecoverableAuthException.html
+++ b/docs/html/reference/com/google/android/gms/auth/UserRecoverableAuthException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1394,7 +1394,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/auth/UserRecoverableNotifiedException.html b/docs/html/reference/com/google/android/gms/auth/UserRecoverableNotifiedException.html
index 1612abd..fad489a 100644
--- a/docs/html/reference/com/google/android/gms/auth/UserRecoverableNotifiedException.html
+++ b/docs/html/reference/com/google/android/gms/auth/UserRecoverableNotifiedException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1293,7 +1293,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/auth/package-summary.html b/docs/html/reference/com/google/android/gms/auth/package-summary.html
index 65ab563..513f0c2 100644
--- a/docs/html/reference/com/google/android/gms/auth/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/auth/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -620,7 +620,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/AccountPicker.html b/docs/html/reference/com/google/android/gms/common/AccountPicker.html
index dec2e31..dba73d8 100644
--- a/docs/html/reference/com/google/android/gms/common/AccountPicker.html
+++ b/docs/html/reference/com/google/android/gms/common/AccountPicker.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1091,7 +1091,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/ConnectionResult.html b/docs/html/reference/com/google/android/gms/common/ConnectionResult.html
index 334485c..319fe9c 100644
--- a/docs/html/reference/com/google/android/gms/common/ConnectionResult.html
+++ b/docs/html/reference/com/google/android/gms/common/ConnectionResult.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1882,7 +1882,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.ConnectionCallbacks.html b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.ConnectionCallbacks.html
index 52bb197..330d74f 100644
--- a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.ConnectionCallbacks.html
+++ b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.ConnectionCallbacks.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -826,7 +826,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.OnConnectionFailedListener.html b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.OnConnectionFailedListener.html
index 8709555..c6a4f6a 100644
--- a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.OnConnectionFailedListener.html
+++ b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.OnConnectionFailedListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -780,7 +780,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.html b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.html
index 1567e3c..5b8301a 100644
--- a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.html
+++ b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesClient.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1365,7 +1365,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesNotAvailableException.html b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesNotAvailableException.html
index 694ca89..4fe62ad 100644
--- a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesNotAvailableException.html
+++ b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesNotAvailableException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1327,7 +1327,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesUtil.html b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesUtil.html
index c4090ee..faac780 100644
--- a/docs/html/reference/com/google/android/gms/common/GooglePlayServicesUtil.html
+++ b/docs/html/reference/com/google/android/gms/common/GooglePlayServicesUtil.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1181,8 +1181,8 @@
         <span class="jd-tagtitle">Constant Value: </span>
         <span>
             
-                2010000
-                (0x001eab90)
+                2011000
+                (0x001eaf78)
             
         </span>
         </div>
@@ -1618,7 +1618,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/Scopes.html b/docs/html/reference/com/google/android/gms/common/Scopes.html
index 891c68b..80cc583 100644
--- a/docs/html/reference/com/google/android/gms/common/Scopes.html
+++ b/docs/html/reference/com/google/android/gms/common/Scopes.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1013,7 +1013,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/common/package-summary.html b/docs/html/reference/com/google/android/gms/common/package-summary.html
index 0cd7d7d..4f5b050 100644
--- a/docs/html/reference/com/google/android/gms/common/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/common/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -638,7 +638,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/CameraUpdate.html b/docs/html/reference/com/google/android/gms/maps/CameraUpdate.html
index 07f6dcd..337fe4f 100644
--- a/docs/html/reference/com/google/android/gms/maps/CameraUpdate.html
+++ b/docs/html/reference/com/google/android/gms/maps/CameraUpdate.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -958,7 +958,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/CameraUpdateFactory.html b/docs/html/reference/com/google/android/gms/maps/CameraUpdateFactory.html
index bb7ff16..d958208 100644
--- a/docs/html/reference/com/google/android/gms/maps/CameraUpdateFactory.html
+++ b/docs/html/reference/com/google/android/gms/maps/CameraUpdateFactory.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1728,7 +1728,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.CancelableCallback.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.CancelableCallback.html
index 469dd0d..17956d7 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.CancelableCallback.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.CancelableCallback.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -810,7 +810,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.InfoWindowAdapter.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.InfoWindowAdapter.html
index 9fbac56..8e4713c 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.InfoWindowAdapter.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.InfoWindowAdapter.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -859,7 +859,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnCameraChangeListener.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnCameraChangeListener.html
index e00629b..cab50ae 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnCameraChangeListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnCameraChangeListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -775,7 +775,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnInfoWindowClickListener.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnInfoWindowClickListener.html
index 0cefc0c..91a9ce3 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnInfoWindowClickListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnInfoWindowClickListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -771,7 +771,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapClickListener.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapClickListener.html
index 6d6b498..01dd51c 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapClickListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapClickListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -776,7 +776,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapLongClickListener.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapLongClickListener.html
index 2ba5353..df85d1e 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapLongClickListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMapLongClickListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -776,7 +776,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerClickListener.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerClickListener.html
index 77213ec..ea6bb6a 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerClickListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerClickListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -778,7 +778,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerDragListener.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerDragListener.html
index ec49078..6de516c 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerDragListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.OnMarkerDragListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -889,7 +889,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMap.html b/docs/html/reference/com/google/android/gms/maps/GoogleMap.html
index b75bca9..ff847c5 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMap.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMap.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -3269,7 +3269,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/GoogleMapOptions.html b/docs/html/reference/com/google/android/gms/maps/GoogleMapOptions.html
index d962639..af47273 100644
--- a/docs/html/reference/com/google/android/gms/maps/GoogleMapOptions.html
+++ b/docs/html/reference/com/google/android/gms/maps/GoogleMapOptions.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2414,7 +2414,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/LocationSource.OnLocationChangedListener.html b/docs/html/reference/com/google/android/gms/maps/LocationSource.OnLocationChangedListener.html
index acd16ca..36947cc 100644
--- a/docs/html/reference/com/google/android/gms/maps/LocationSource.OnLocationChangedListener.html
+++ b/docs/html/reference/com/google/android/gms/maps/LocationSource.OnLocationChangedListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -771,7 +771,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/LocationSource.html b/docs/html/reference/com/google/android/gms/maps/LocationSource.html
index c480462..bc4b8ec 100644
--- a/docs/html/reference/com/google/android/gms/maps/LocationSource.html
+++ b/docs/html/reference/com/google/android/gms/maps/LocationSource.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -876,7 +876,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/MapFragment.html b/docs/html/reference/com/google/android/gms/maps/MapFragment.html
index 029f2ac..b8c25d6 100644
--- a/docs/html/reference/com/google/android/gms/maps/MapFragment.html
+++ b/docs/html/reference/com/google/android/gms/maps/MapFragment.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -3119,7 +3119,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/MapView.html b/docs/html/reference/com/google/android/gms/maps/MapView.html
index 8e46ba6..52f97aa 100644
--- a/docs/html/reference/com/google/android/gms/maps/MapView.html
+++ b/docs/html/reference/com/google/android/gms/maps/MapView.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -12480,7 +12480,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/MapsInitializer.html b/docs/html/reference/com/google/android/gms/maps/MapsInitializer.html
index 82bde5a..56c36d4 100644
--- a/docs/html/reference/com/google/android/gms/maps/MapsInitializer.html
+++ b/docs/html/reference/com/google/android/gms/maps/MapsInitializer.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1041,7 +1041,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/Projection.html b/docs/html/reference/com/google/android/gms/maps/Projection.html
index 72ca9c7..214a0c0 100644
--- a/docs/html/reference/com/google/android/gms/maps/Projection.html
+++ b/docs/html/reference/com/google/android/gms/maps/Projection.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1150,7 +1150,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/SupportMapFragment.html b/docs/html/reference/com/google/android/gms/maps/SupportMapFragment.html
index eeae46b..d18f9dd 100644
--- a/docs/html/reference/com/google/android/gms/maps/SupportMapFragment.html
+++ b/docs/html/reference/com/google/android/gms/maps/SupportMapFragment.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2976,7 +2976,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/UiSettings.html b/docs/html/reference/com/google/android/gms/maps/UiSettings.html
index 6966880..5b8f856 100644
--- a/docs/html/reference/com/google/android/gms/maps/UiSettings.html
+++ b/docs/html/reference/com/google/android/gms/maps/UiSettings.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1838,7 +1838,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptor.html b/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptor.html
index a7e9b937..d57a280 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptor.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptor.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -961,7 +961,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptorFactory.html b/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptorFactory.html
index f83aac3..c683389 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptorFactory.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/BitmapDescriptorFactory.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1776,7 +1776,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.Builder.html b/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.Builder.html
index db6a87b..ca911b3 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.Builder.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.Builder.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1337,7 +1337,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.html b/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.html
index 2c671ca..6dd08be 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/CameraPosition.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1937,7 +1937,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/GroundOverlay.html b/docs/html/reference/com/google/android/gms/maps/model/GroundOverlay.html
index dac7e46..f8412c6 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/GroundOverlay.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/GroundOverlay.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2109,7 +2109,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/GroundOverlayOptions.html b/docs/html/reference/com/google/android/gms/maps/model/GroundOverlayOptions.html
index 4e2bc63..71bdda0 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/GroundOverlayOptions.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/GroundOverlayOptions.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2634,7 +2634,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/LatLng.html b/docs/html/reference/com/google/android/gms/maps/model/LatLng.html
index 91f813a..a34ea20 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/LatLng.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/LatLng.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1602,7 +1602,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.Builder.html b/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.Builder.html
index 7771679..de5733c 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.Builder.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.Builder.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1154,7 +1154,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.html b/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.html
index aa77e03..f76571c 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/LatLngBounds.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1812,7 +1812,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/Marker.html b/docs/html/reference/com/google/android/gms/maps/model/Marker.html
index f8233a4..f8a0155 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/Marker.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/Marker.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1850,7 +1850,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/MarkerOptions.html b/docs/html/reference/com/google/android/gms/maps/model/MarkerOptions.html
index dd1b2a8..939e425 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/MarkerOptions.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/MarkerOptions.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2196,7 +2196,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/Polygon.html b/docs/html/reference/com/google/android/gms/maps/model/Polygon.html
index 02f538b..f40bfb1 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/Polygon.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/Polygon.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2075,7 +2075,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/PolygonOptions.html b/docs/html/reference/com/google/android/gms/maps/model/PolygonOptions.html
index c06ec8c..b3075b8 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/PolygonOptions.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/PolygonOptions.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2311,7 +2311,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/Polyline.html b/docs/html/reference/com/google/android/gms/maps/model/Polyline.html
index 3240681..060f91f 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/Polyline.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/Polyline.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1923,7 +1923,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/PolylineOptions.html b/docs/html/reference/com/google/android/gms/maps/model/PolylineOptions.html
index 0128763..6d42986 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/PolylineOptions.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/PolylineOptions.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2095,7 +2095,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/RuntimeRemoteException.html b/docs/html/reference/com/google/android/gms/maps/model/RuntimeRemoteException.html
index 8f031d3..397a7ad 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/RuntimeRemoteException.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/RuntimeRemoteException.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1292,7 +1292,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/Tile.html b/docs/html/reference/com/google/android/gms/maps/model/Tile.html
index 98348c0..8c775c2 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/Tile.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/Tile.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1503,7 +1503,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/TileOverlay.html b/docs/html/reference/com/google/android/gms/maps/model/TileOverlay.html
index d7a28e2..1b8bafd 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/TileOverlay.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/TileOverlay.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1482,7 +1482,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/TileOverlayOptions.html b/docs/html/reference/com/google/android/gms/maps/model/TileOverlayOptions.html
index 0ebd57f..86a1417 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/TileOverlayOptions.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/TileOverlayOptions.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1690,7 +1690,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/TileProvider.html b/docs/html/reference/com/google/android/gms/maps/model/TileProvider.html
index 5c6a215..3ad75ba 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/TileProvider.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/TileProvider.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -903,7 +903,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/UrlTileProvider.html b/docs/html/reference/com/google/android/gms/maps/model/UrlTileProvider.html
index 100fea8..c586f1e 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/UrlTileProvider.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/UrlTileProvider.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1308,7 +1308,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/VisibleRegion.html b/docs/html/reference/com/google/android/gms/maps/model/VisibleRegion.html
index 0953d69..04bd89a 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/VisibleRegion.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/VisibleRegion.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1757,7 +1757,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/model/package-summary.html b/docs/html/reference/com/google/android/gms/maps/model/package-summary.html
index f12320d3..30a3f37 100644
--- a/docs/html/reference/com/google/android/gms/maps/model/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/maps/model/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -690,7 +690,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/maps/package-summary.html b/docs/html/reference/com/google/android/gms/maps/package-summary.html
index 7010df9..b762b0c 100644
--- a/docs/html/reference/com/google/android/gms/maps/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/maps/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -677,7 +677,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/package-summary.html b/docs/html/reference/com/google/android/gms/package-summary.html
index 0efdc84..537c749 100644
--- a/docs/html/reference/com/google/android/gms/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -602,7 +602,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.OnPanoramaInfoLoadedListener.html b/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.OnPanoramaInfoLoadedListener.html
index 95e6ec5a..51f8c46 100644
--- a/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.OnPanoramaInfoLoadedListener.html
+++ b/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.OnPanoramaInfoLoadedListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -777,7 +777,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.html b/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.html
index 33465e3..0c71fdb 100644
--- a/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.html
+++ b/docs/html/reference/com/google/android/gms/panorama/PanoramaClient.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1962,7 +1962,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/panorama/package-summary.html b/docs/html/reference/com/google/android/gms/panorama/package-summary.html
index 23dac6a..5cc95b1 100644
--- a/docs/html/reference/com/google/android/gms/panorama/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/panorama/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -597,7 +597,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/GooglePlusUtil.html b/docs/html/reference/com/google/android/gms/plus/GooglePlusUtil.html
index 0ecc732..5f8dbf3 100644
--- a/docs/html/reference/com/google/android/gms/plus/GooglePlusUtil.html
+++ b/docs/html/reference/com/google/android/gms/plus/GooglePlusUtil.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1348,7 +1348,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/PlusClient.html b/docs/html/reference/com/google/android/gms/plus/PlusClient.html
index 6cad54d..05a30ec 100644
--- a/docs/html/reference/com/google/android/gms/plus/PlusClient.html
+++ b/docs/html/reference/com/google/android/gms/plus/PlusClient.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -2143,7 +2143,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/PlusOneButton.OnPlusOneClickListener.html b/docs/html/reference/com/google/android/gms/plus/PlusOneButton.OnPlusOneClickListener.html
index 267d770..d10a252 100644
--- a/docs/html/reference/com/google/android/gms/plus/PlusOneButton.OnPlusOneClickListener.html
+++ b/docs/html/reference/com/google/android/gms/plus/PlusOneButton.OnPlusOneClickListener.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -774,7 +774,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/PlusOneButton.html b/docs/html/reference/com/google/android/gms/plus/PlusOneButton.html
index cac9ffa..dda095c 100644
--- a/docs/html/reference/com/google/android/gms/plus/PlusOneButton.html
+++ b/docs/html/reference/com/google/android/gms/plus/PlusOneButton.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -12356,7 +12356,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/PlusShare.Builder.html b/docs/html/reference/com/google/android/gms/plus/PlusShare.Builder.html
index 848f692..d2ee6bc 100644
--- a/docs/html/reference/com/google/android/gms/plus/PlusShare.Builder.html
+++ b/docs/html/reference/com/google/android/gms/plus/PlusShare.Builder.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1552,7 +1552,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/PlusShare.html b/docs/html/reference/com/google/android/gms/plus/PlusShare.html
index 47d0eb6..4ea956d 100644
--- a/docs/html/reference/com/google/android/gms/plus/PlusShare.html
+++ b/docs/html/reference/com/google/android/gms/plus/PlusShare.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -1349,7 +1349,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/PlusSignInButton.html b/docs/html/reference/com/google/android/gms/plus/PlusSignInButton.html
index cc261b1..67fdf37 100644
--- a/docs/html/reference/com/google/android/gms/plus/PlusSignInButton.html
+++ b/docs/html/reference/com/google/android/gms/plus/PlusSignInButton.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop" itemscope itemtype="http://schema.org/Article">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -408,13 +408,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -9805,7 +9805,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/com/google/android/gms/plus/package-summary.html b/docs/html/reference/com/google/android/gms/plus/package-summary.html
index 87b6d84..8e0da0e 100644
--- a/docs/html/reference/com/google/android/gms/plus/package-summary.html
+++ b/docs/html/reference/com/google/android/gms/plus/package-summary.html
@@ -100,7 +100,7 @@
 
 </head>
 
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <div id="doc-api-level" class="" style="display:none"></div>
   <a name="top"></a>
@@ -409,13 +409,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -624,7 +624,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/docs/html/reference/gcm-packages.html b/docs/html/reference/gcm-packages.html
index defc304..653f85070 100644
--- a/docs/html/reference/gcm-packages.html
+++ b/docs/html/reference/gcm-packages.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <a name="top"></a>
 
@@ -407,13 +407,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -564,7 +564,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:15
 
   </div>
 
diff --git a/docs/html/reference/gms-packages.html b/docs/html/reference/gms-packages.html
index 650a2e4..228e841 100644
--- a/docs/html/reference/gms-packages.html
+++ b/docs/html/reference/gms-packages.html
@@ -99,7 +99,7 @@
 <script src="/gcm_navtree_data.js" type="text/javascript"></script>
 
 </head>
-<body class="gc-documentation 
+<body class="gc-documentation google
   develop">
   <a name="top"></a>
 
@@ -407,13 +407,13 @@
               <span class="en">Security and Design</span></a>
           </li>
           <li><a href="/google/play/billing/billing_testing.html">
-              <span class="en">Testing <br/>In-app Billing</span></a>
+              <span class="en">Testing In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_admin.html">
               <span class="en">Administering In-app Billing</span></a>
           </li>
           <li><a href="/google/play/billing/billing_reference.html">
-              <span class="en">In-app Billing Reference</span></a>
+              <span class="en">Reference</span></a>
           </li>
     </ul>
   </li>
@@ -530,9 +530,9 @@
 <div id="jd-content">
 
 <div class="jd-descr">
-<p>Contains the classes for accessing the services provided in the Google Play services platform. See
-the <a href="/google/play-services/setup.html">Setup guide</a> on how to configure the SDK that contains
-these classes.</p>
+  <p>Contains the classes for accessing the services provided in the Google Play services platform.
+    See the <a href="/google/play-services/setup.html">Setup guide</a> on how to configure the
+    SDK that contains these classes.</p>
 </div>
 
 
@@ -601,7 +601,7 @@
   </div>
   <div id="build_info">
     
-  Android &nbsp;r - 30 Nov 2012 16:06
+    Android &nbsp;r &mdash; 03 Dec 2012 12:16
 
   </div>
 
diff --git a/services/java/com/android/server/BluetoothManagerService.java b/services/java/com/android/server/BluetoothManagerService.java
index 5d83f00..7f52157 100755
--- a/services/java/com/android/server/BluetoothManagerService.java
+++ b/services/java/com/android/server/BluetoothManagerService.java
@@ -77,6 +77,15 @@
     private static final int MESSAGE_SAVE_NAME_AND_ADDRESS=201;
     private static final int MESSAGE_USER_SWITCHED = 300;
     private static final int MAX_SAVE_RETRIES=3;
+    // Bluetooth persisted setting is off
+    private static final int BLUETOOTH_OFF=0;
+    // Bluetooth persisted setting is on
+    // and Airplane mode won't affect Bluetooth state at start up
+    private static final int BLUETOOTH_ON_BLUETOOTH=1;
+    // Bluetooth persisted setting is on
+    // but Airplane mode will affect Bluetooth state at start up
+    // and Airplane mode will have higher priority.
+    private static final int BLUETOOTH_ON_AIRPLANE=2;
 
     private final Context mContext;
 
@@ -90,7 +99,15 @@
     private IBluetooth mBluetooth;
     private boolean mBinding;
     private boolean mUnbinding;
+    // used inside handler thread
     private boolean mQuietEnable = false;
+    // configuarion from external IBinder call which is used to
+    // synchronize with broadcast receiver.
+    private boolean mQuietEnableExternal;
+    // configuarion from external IBinder call which is used to
+    // synchronize with broadcast receiver.
+    private boolean mEnableExternal;
+    // used inside handler thread
     private boolean mEnable;
     private int mState;
     private HandlerThread mThread;
@@ -128,18 +145,39 @@
                     storeNameAndAddress(newName, null);
                 }
             } else if (Intent.ACTION_AIRPLANE_MODE_CHANGED.equals(action)) {
-                if (isAirplaneModeOn()) {
-                    // disable without persisting the setting
-                    mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_DISABLE,
-                           0, 0));
-                } else if (isBluetoothPersistedStateOn()) {
-                    // enable without persisting the setting
-                    mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_ENABLE,
-                           0, 0));
+                synchronized(mReceiver) {
+                    if (isBluetoothPersistedStateOn()) {
+                        if (isAirplaneModeOn()) {
+                            persistBluetoothSetting(BLUETOOTH_ON_AIRPLANE);
+                        } else {
+                            persistBluetoothSetting(BLUETOOTH_ON_BLUETOOTH);
+                        }
+                    }
+                    if (isAirplaneModeOn()) {
+                        // disable without persisting the setting
+                        sendDisableMsg();
+                    } else if (mEnableExternal) {
+                        // enable without persisting the setting
+                        sendEnableMsg(mQuietEnableExternal);
+                    }
                 }
             } else if (Intent.ACTION_USER_SWITCHED.equals(action)) {
                 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_USER_SWITCHED,
                        intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0), 0));
+            } else if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
+                synchronized(mReceiver) {
+                    if (mEnableExternal && isBluetoothPersistedStateOnBluetooth()) {
+                        //Enable
+                        if (DBG) Log.d(TAG, "Auto-enabling Bluetooth.");
+                        sendEnableMsg(mQuietEnableExternal);
+                    }
+                }
+
+                if (!isNameAndAddressSet()) {
+                    //Sync the Bluetooth name and address from the Bluetooth Adapter
+                    if (DBG) Log.d(TAG,"Retrieving Bluetooth Adapter name and address...");
+                    getNameAndAddress();
+                }
             }
         }
     };
@@ -155,30 +193,21 @@
         mUnbinding = false;
         mEnable = false;
         mState = BluetoothAdapter.STATE_OFF;
+        mQuietEnableExternal = false;
+        mEnableExternal = false;
         mAddress = null;
         mName = null;
         mContentResolver = context.getContentResolver();
         mCallbacks = new RemoteCallbackList<IBluetoothManagerCallback>();
         mStateChangeCallbacks = new RemoteCallbackList<IBluetoothStateChangeCallback>();
-        IntentFilter filter = new IntentFilter(BluetoothAdapter.ACTION_STATE_CHANGED);
+        IntentFilter filter = new IntentFilter(Intent.ACTION_BOOT_COMPLETED);
         filter.addAction(BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED);
         filter.addAction(Intent.ACTION_USER_SWITCHED);
         registerForAirplaneMode(filter);
         mContext.registerReceiver(mReceiver, filter);
-        boolean airplaneModeOn = isAirplaneModeOn();
-        boolean bluetoothOn = isBluetoothPersistedStateOn();
         loadStoredNameAndAddress();
-        if (DBG) Log.d(TAG, "airplaneModeOn: " + airplaneModeOn + " bluetoothOn: " + bluetoothOn);
-        if (bluetoothOn) {
-            //Enable
-            if (DBG) Log.d(TAG, "Auto-enabling Bluetooth.");
-            enableHelper();
-        }
-
-        if (!isNameAndAddressSet()) {
-            //Sync the Bluetooth name and address from the Bluetooth Adapter
-            if (DBG) Log.d(TAG,"Retrieving Bluetooth Adapter name and address...");
-            getNameAndAddress();
+        if (isBluetoothPersistedStateOn()) {
+            mEnableExternal = true;
         }
     }
 
@@ -195,17 +224,25 @@
      */
     private final boolean isBluetoothPersistedStateOn() {
         return Settings.Global.getInt(mContentResolver,
-                Settings.Global.BLUETOOTH_ON, 0) ==1;
+                Settings.Global.BLUETOOTH_ON, 0) != BLUETOOTH_OFF;
+    }
+
+    /**
+     *  Returns true if the Bluetooth saved state is BLUETOOTH_ON_BLUETOOTH
+     */
+    private final boolean isBluetoothPersistedStateOnBluetooth() {
+        return Settings.Global.getInt(mContentResolver,
+                Settings.Global.BLUETOOTH_ON, 0) == BLUETOOTH_ON_BLUETOOTH;
     }
 
     /**
      *  Save the Bluetooth on/off state
      *
      */
-    private void persistBluetoothSetting(boolean setOn) {
+    private void persistBluetoothSetting(int value) {
         Settings.Global.putInt(mContext.getContentResolver(),
                                Settings.Global.BLUETOOTH_ON,
-                               setOn ? 1 : 0);
+                               value);
     }
 
     /**
@@ -334,10 +371,11 @@
             throw new SecurityException("no permission to enable Bluetooth quietly");
         }
 
-        Message msg = mHandler.obtainMessage(MESSAGE_ENABLE);
-        msg.arg1=0; //No persist
-        msg.arg2=1; //Quiet mode
-        mHandler.sendMessage(msg);
+        synchronized(mReceiver) {
+            mQuietEnableExternal = true;
+            mEnableExternal = true;
+            sendEnableMsg(true);
+        }
         return true;
 
     }
@@ -348,7 +386,23 @@
             return false;
         }
 
-        return enableHelper();
+        mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
+                                                "Need BLUETOOTH ADMIN permission");
+        if (DBG) {
+            Log.d(TAG,"enable():  mBluetooth =" + mBluetooth +
+                    " mBinding = " + mBinding);
+        }
+
+        synchronized(mReceiver) {
+            mQuietEnableExternal = false;
+            mEnableExternal = true;
+            // waive WRITE_SECURE_SETTINGS permission check
+            long callingIdentity = Binder.clearCallingIdentity();
+            persistBluetoothSetting(BLUETOOTH_ON_BLUETOOTH);
+            Binder.restoreCallingIdentity(callingIdentity);
+            sendEnableMsg(false);
+        }
+        return true;
     }
 
     public boolean disable(boolean persist) {
@@ -366,9 +420,16 @@
                 " mBinding = " + mBinding);
         }
 
-        Message msg = mHandler.obtainMessage(MESSAGE_DISABLE);
-        msg.arg1=(persist?1:0);
-        mHandler.sendMessage(msg);
+        synchronized(mReceiver) {
+            if (persist) {
+                // waive WRITE_SECURE_SETTINGS permission check
+                long callingIdentity = Binder.clearCallingIdentity();
+                persistBluetoothSetting(BLUETOOTH_OFF);
+                Binder.restoreCallingIdentity(callingIdentity);
+            }
+            mEnableExternal = false;
+            sendDisableMsg();
+        }
         return true;
     }
 
@@ -641,7 +702,7 @@
                     }
                     mHandler.removeMessages(MESSAGE_RESTART_BLUETOOTH_SERVICE);
                     mEnable = true;
-                    handleEnable(msg.arg1 == 1, msg.arg2 ==1);
+                    handleEnable(msg.arg1 == 1);
                     break;
 
                 case MESSAGE_DISABLE:
@@ -649,11 +710,11 @@
                     if (mEnable && mBluetooth != null) {
                         waitForOnOff(true, false);
                         mEnable = false;
-                        handleDisable(msg.arg1 == 1);
+                        handleDisable();
                         waitForOnOff(false, false);
                     } else {
                         mEnable = false;
-                        handleDisable(msg.arg1 == 1);
+                        handleDisable();
                     }
                     break;
 
@@ -732,7 +793,7 @@
 
                     if (!mEnable) {
                         waitForOnOff(true, false);
-                        handleDisable(false);
+                        handleDisable();
                         waitForOnOff(false, false);
                     }
                     break;
@@ -800,7 +861,7 @@
                      it doesnt change when IBluetooth
                      service restarts */
                     mEnable = true;
-                    handleEnable(false, mQuietEnable);
+                    handleEnable(mQuietEnable);
                     break;
                 }
 
@@ -849,7 +910,7 @@
                         }
 
                         // disable
-                        handleDisable(false);
+                        handleDisable();
                         // Pbap service need receive STATE_TURNING_OFF intent to close
                         bluetoothStateChangeHandler(BluetoothAdapter.STATE_ON,
                                                     BluetoothAdapter.STATE_TURNING_OFF);
@@ -871,7 +932,7 @@
                         mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
                         mState = BluetoothAdapter.STATE_OFF;
                         // enable
-                        handleEnable(false, mQuietEnable);
+                        handleEnable(mQuietEnable);
 		    } else if (mBinding || mBluetooth != null) {
                         Message userMsg = mHandler.obtainMessage(MESSAGE_USER_SWITCHED);
                         userMsg.arg2 = 1 + msg.arg2;
@@ -888,11 +949,7 @@
         }
     }
 
-    private void handleEnable(boolean persist, boolean quietMode) {
-        if (persist) {
-            persistBluetoothSetting(true);
-        }
-
+    private void handleEnable(boolean quietMode) {
         mQuietEnable = quietMode;
 
         synchronized(mConnection) {
@@ -944,11 +1001,7 @@
         }
     }
 
-    private void handleDisable(boolean persist) {
-        if (persist) {
-            persistBluetoothSetting(false);
-        }
-
+    private void handleDisable() {
         synchronized(mConnection) {
             // don't need to disable if GetNameAddressOnly is set,
             // service will be unbinded after Name and Address are saved
@@ -988,21 +1041,6 @@
         return valid;
     }
 
-    private boolean enableHelper() {
-        mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
-                                                "Need BLUETOOTH ADMIN permission");
-        if (DBG) {
-            Log.d(TAG,"enable():  mBluetooth =" + mBluetooth +
-                    " mBinding = " + mBinding);
-        }
-
-        Message msg = mHandler.obtainMessage(MESSAGE_ENABLE);
-        msg.arg1=1; //persist
-        msg.arg2=0; //No Quiet Mode
-        mHandler.sendMessage(msg);
-        return true;
-    }
-
     private void bluetoothStateChangeHandler(int prevState, int newState) {
         if (prevState != newState) {
             //Notify all proxy objects first of adapter state change
@@ -1062,6 +1100,15 @@
         return false;
     }
 
+    private void sendDisableMsg() {
+        mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_DISABLE));
+    }
+
+    private void sendEnableMsg(boolean quietMode) {
+        mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_ENABLE,
+                             quietMode ? 1 : 0, 0));
+    }
+
     private boolean canUnbindBluetoothService() {
         synchronized(mConnection) {
             //Only unbind with mEnable flag not set
diff --git a/services/java/com/android/server/net/NetworkStatsService.java b/services/java/com/android/server/net/NetworkStatsService.java
index 7101520..546f2be 100644
--- a/services/java/com/android/server/net/NetworkStatsService.java
+++ b/services/java/com/android/server/net/NetworkStatsService.java
@@ -903,7 +903,7 @@
                 ident.add(NetworkIdentity.buildNetworkIdentity(mContext, state));
 
                 // remember any ifaces associated with mobile networks
-                if (isNetworkTypeMobile(state.networkInfo.getType())) {
+                if (isNetworkTypeMobile(state.networkInfo.getType()) && iface != null) {
                     if (!contains(mMobileIfaces, iface)) {
                         mMobileIfaces = appendElement(String.class, mMobileIfaces, iface);
                     }
diff --git a/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java b/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java
index e9374e0..af74da2 100644
--- a/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java
+++ b/tests/AppLaunch/src/com/android/tests/applaunch/AppLaunch.java
@@ -17,6 +17,7 @@
 
 import android.app.ActivityManager;
 import android.app.ActivityManager.ProcessErrorStateInfo;
+import android.app.IActivityManager.WaitResult;
 import android.app.ActivityManagerNative;
 import android.app.IActivityManager;
 import android.content.Context;
@@ -31,7 +32,7 @@
 import android.test.InstrumentationTestRunner;
 import android.util.Log;
 
-import java.util.HashMap;
+import java.util.LinkedHashMap;
 import java.util.List;
 import java.util.Map;
 
@@ -79,7 +80,7 @@
     }
 
     private void parseArgs(Bundle args) {
-        mNameToResultKey = new HashMap<String, String>();
+        mNameToResultKey = new LinkedHashMap<String, String>();
         String appList = args.getString(KEY_APPS);
 
         if (appList == null)
@@ -98,8 +99,8 @@
     }
 
     private void createMappings() {
-        mNameToIntent = new HashMap<String, Intent>();
-        mNameToProcess = new HashMap<String, String>();
+        mNameToIntent = new LinkedHashMap<String, Intent>();
+        mNameToProcess = new LinkedHashMap<String, String>();
 
         PackageManager pm = getInstrumentation().getContext()
                 .getPackageManager();
@@ -127,24 +128,26 @@
         Log.i(TAG, "Starting " + appName);
 
         Intent startIntent = mNameToIntent.get(appName);
+        if (startIntent == null) {
+            Log.w(TAG, "App does not exist: " + appName);
+            return;
+        }
         AppLaunchRunnable runnable = new AppLaunchRunnable(startIntent);
         Thread t = new Thread(runnable);
-        long startTime = System.currentTimeMillis();
         t.start();
         try {
             t.join(JOIN_TIMEOUT);
         } catch (InterruptedException e) {
             // ignore
         }
-        if(t.isAlive() || (runnable.getResult() != null &&
-                runnable.getResult().result != ActivityManager.START_SUCCESS)) {
+        WaitResult result = runnable.getResult();
+        if(t.isAlive() || (result != null && result.result != ActivityManager.START_SUCCESS)) {
             Log.w(TAG, "Assuming app " + appName + " crashed.");
             reportError(appName, mNameToProcess.get(appName), results);
             return;
         }
-        long startUpTime = System.currentTimeMillis() - startTime;
-        results.putString(mNameToResultKey.get(appName), String.valueOf(startUpTime));
-        sleep(5000);
+        results.putString(mNameToResultKey.get(appName), String.valueOf(result.thisTime));
+        sleep(1000);
     }
 
     private void closeApp() {
@@ -153,7 +156,7 @@
         homeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
         getInstrumentation().getContext().startActivity(homeIntent);
-        sleep(3000);
+        sleep(1000);
     }
 
     private void sleep(int time) {
@@ -198,6 +201,8 @@
 
         public void run() {
             try {
+                String packageName = mLaunchIntent.getComponent().getPackageName();
+                mAm.forceStopPackage(packageName, UserHandle.USER_CURRENT);
                 String mimeType = mLaunchIntent.getType();
                 if (mimeType == null && mLaunchIntent.getData() != null
                         && "content".equals(mLaunchIntent.getData().getScheme())) {