OSDN Git Service

android-x86/frameworks-base.git
9 years agoMerge "DevicePolicy: One cert tracker warning per profile" into lmp-dev
Robin Lee [Thu, 9 Oct 2014 12:55:16 +0000 (12:55 +0000)]
Merge "DevicePolicy: One cert tracker warning per profile" into lmp-dev

9 years agoam a63f81ec: am e15773be: Merge "docs: Android TV publishing requirements" into klp...
Joe Fernandez [Thu, 9 Oct 2014 12:07:07 +0000 (12:07 +0000)]
am a63f81ec: am e15773be: Merge "docs: Android TV publishing requirements" into klp-modular-docs

* commit 'a63f81ec897988befad7b286b50f73a42319fd5e':
  docs: Android TV publishing requirements

9 years agoam e15773be: Merge "docs: Android TV publishing requirements" into klp-modular-docs
Joe Fernandez [Thu, 9 Oct 2014 12:01:36 +0000 (12:01 +0000)]
am e15773be: Merge "docs: Android TV publishing requirements" into klp-modular-docs

* commit 'e15773be4837baf15079d5d7e8f8c0c09cef952f':
  docs: Android TV publishing requirements

9 years agoDevicePolicy: One cert tracker warning per profile
Robin Lee [Mon, 6 Oct 2014 10:36:25 +0000 (11:36 +0100)]
DevicePolicy: One cert tracker warning per profile

Shows one notification per profile instead of one notification per
user or (previously) one notification per device.

Bug: 17794425
Change-Id: I6f0d34a16fa2a45082941387ac765dd99eefa131

9 years agoMerge "docs: Android TV publishing requirements" into klp-modular-docs
Joe Fernandez [Thu, 9 Oct 2014 04:19:19 +0000 (04:19 +0000)]
Merge "docs: Android TV publishing requirements" into klp-modular-docs

9 years agodocs: Android TV publishing requirements
Joe Fernandez [Mon, 6 Oct 2014 05:12:10 +0000 (22:12 -0700)]
docs: Android TV publishing requirements

Change-Id: If1105cb596934034a7156b573c99905bbe6c4978

9 years agoMediaHTTPConnection: do not use proxy for localhost
Chong Zhang [Thu, 9 Oct 2014 00:05:16 +0000 (17:05 -0700)]
MediaHTTPConnection: do not use proxy for localhost

Bug: 17681512
Change-Id: Iba25d89636d8f96efc0eb90e0dd7a135c82ff16a

9 years agoMerge "Also monitor MOVED_TO events for wallpaper updates" into lmp-dev
Christopher Tate [Thu, 9 Oct 2014 02:04:01 +0000 (02:04 +0000)]
Merge "Also monitor MOVED_TO events for wallpaper updates" into lmp-dev

9 years agoAlso monitor MOVED_TO events for wallpaper updates
Christopher Tate [Wed, 8 Oct 2014 21:51:09 +0000 (14:51 -0700)]
Also monitor MOVED_TO events for wallpaper updates

Restore uses moveTo(), not open/write/close, so we need
to watch for that as well.  Now the wallpaper service sees
and regenerates the wallpaper image immediately upon restore.

Bug 17909454

Change-Id: I0db224c3d507bdc40399d49bb4bea01899f76ad1

9 years agoam b4093c12: (-s ours) hwui: Caches: use mBoundTextures only for GL_TEXTURE_2D -...
Fred Fettinger [Thu, 9 Oct 2014 01:23:59 +0000 (01:23 +0000)]
am b4093c12: (-s ours) hwui: Caches: use mBoundTextures only for GL_TEXTURE_2D - DO NOT MERGE

* commit 'b4093c12f8a8cf73f869419904c60e953f5725ee':
  hwui: Caches: use mBoundTextures only for GL_TEXTURE_2D - DO NOT MERGE

9 years agoFix hangouts conference calling regression.
mike dooley [Wed, 8 Oct 2014 20:39:28 +0000 (13:39 -0700)]
Fix hangouts conference calling regression.

Check the connection-by-id hash table instead of conference-by-id hash
table when setting conferenceable connections.

Bug: 17919110
Change-Id: Ia8a5ab3fb96926e600d21eca7737a0044b233563

9 years agohwui: Caches: use mBoundTextures only for GL_TEXTURE_2D - DO NOT MERGE
Fred Fettinger [Fri, 29 Aug 2014 19:02:31 +0000 (14:02 -0500)]
hwui: Caches: use mBoundTextures only for GL_TEXTURE_2D - DO NOT MERGE

Cherry-picked into klp-modular-dev.

bug:17441218

GLConsumer uses glBindTexture() directly instead of going through
Caches::bindTexture(). This can cause libhwui to draw with the wrong
texture bound in the following case which involves 2 TextureViews:

Frame 1:
GLConsumer::updateTexImage() calls glBindTexture(GL_TEXTURE_EXTERNAL_OES, 1)
HWUI renders TextureView A:
    calls Caches::bindTexture(GL_TEXTURE_EXTERNAL_OES, 1) and draws

Frame 2:
GLConsumer::updateTexImage() calls glBindTexture(GL_TEXTURE_EXTERNAL_OES, 1)
GLConsumer::updateTexImage() calls glBindTexture(GL_TEXTURE_EXTERNAL_OES, 2)
HWUI renders TextureView A:
    calls Caches::bindTexture(GL_TEXTURE_EXTERNAL_OES, 1) and draws
HWUI renders TextureView B:
    calls Caches::bindTexture(GL_TEXTURE_EXTERNAL_OES, 2) and draws

In this case, HWUI will incorrectly draw TextureView A using texture 2 on
frame 2, because mBoundTextures[0]=1, even though the texture currently
bound to GL_TEXTURE_EXTERNAL_OES is 2.

Since GLConsumer is always used with a target of GL_TEXTURE_EXTERNAL_OES,
work around this problem by having mBoundTextures[] store only the
textures bound to the target GL_TEXTURE_2D. This is the common case
where the extra performance is needed. Since it's legal to have
different textures bound to GL_TEXTURE_2D and GL_TEXTURE_EXTERNAL_OES
on one texture unit, Caches::bindTexture() does not need to clear
mBoundTextures[mTextureUnit] when target != GL_TEXTURE_2D.

Change-Id: I8bc54ab8adcfacad7f3ed17a31236dc7a86c967a
Signed-off-by: Fred Fettinger <fred.fettinger@motorola.com>
(cherry picked from commit e4de36bbc2baf13206deb53ced39f0befadb1861)

9 years agoMerge "Don't start SearchDialog on television." into lmp-dev
Tim Kilbourn [Thu, 9 Oct 2014 00:49:34 +0000 (00:49 +0000)]
Merge "Don't start SearchDialog on television." into lmp-dev

9 years agoMerge "Ensure we correctly unblank displays when added." into lmp-dev
Jeff Brown [Thu, 9 Oct 2014 00:14:39 +0000 (00:14 +0000)]
Merge "Ensure we correctly unblank displays when added." into lmp-dev

9 years agoam 63cd4977: am 770c3c5e: fix unclickable link due to overlay from offset dev below
smain@google.com [Thu, 9 Oct 2014 00:10:06 +0000 (00:10 +0000)]
am 63cd4977: am 770c3c5e: fix unclickable link due to overlay from offset dev below

* commit '63cd4977fd72de401f347ba159a71fe3d04399b3':
  fix unclickable link due to overlay from offset dev below

9 years agoam 770c3c5e: fix unclickable link due to overlay from offset dev below
smain@google.com [Thu, 9 Oct 2014 00:04:57 +0000 (00:04 +0000)]
am 770c3c5e: fix unclickable link due to overlay from offset dev below

* commit '770c3c5ed52f354fe04ced31aaa56ba57a028955':
  fix unclickable link due to overlay from offset dev below

9 years agoDon't start SearchDialog on television.
Tim Kilbourn [Thu, 9 Oct 2014 00:01:42 +0000 (17:01 -0700)]
Don't start SearchDialog on television.

Bug: 17654744
Change-Id: Ie76405d648b7ac34a70465e275315f9cf277a3fe

9 years agoMerge "update droiddoc option to include api level 21 for javadoc tagging" into lmp-dev
smain@google.com [Wed, 8 Oct 2014 23:58:33 +0000 (23:58 +0000)]
Merge "update droiddoc option to include api level 21 for javadoc tagging" into lmp-dev

9 years agofix unclickable link due to overlay from offset dev below
smain@google.com [Wed, 8 Oct 2014 23:54:21 +0000 (16:54 -0700)]
fix unclickable link due to overlay from offset dev below

Change-Id: I59bedd0e928d578a3bd030caa4add4cfa96db83f

9 years agoMerge "Actually tell the widget service that restore is starting" into lmp-dev
Christopher Tate [Wed, 8 Oct 2014 23:31:30 +0000 (23:31 +0000)]
Merge "Actually tell the widget service that restore is starting" into lmp-dev

9 years agoupdate droiddoc option to include api level 21 for javadoc tagging
smain@google.com [Wed, 8 Oct 2014 23:23:34 +0000 (16:23 -0700)]
update droiddoc option to include api level 21 for javadoc tagging

Change-Id: Ifdb09267b0cdab4cd89aaea455de6270481ff230

9 years agoMerge "Ensure metadata bundles are unparceled before making them available" into...
RoboErik [Wed, 8 Oct 2014 22:30:04 +0000 (22:30 +0000)]
Merge "Ensure metadata bundles are unparceled before making them available" into lmp-dev

9 years agoMerge "Turn on dimension validation in wallpaper restore" into lmp-dev
Christopher Tate [Wed, 8 Oct 2014 21:44:35 +0000 (21:44 +0000)]
Merge "Turn on dimension validation in wallpaper restore" into lmp-dev

9 years agoMerge "BUG 17887323: Need to turn off DEBUG log spam in Job Scheduler" into lmp-dev
Georgi Nikolov [Wed, 8 Oct 2014 20:50:45 +0000 (20:50 +0000)]
Merge "BUG 17887323: Need to turn off DEBUG log spam in Job Scheduler" into lmp-dev

9 years agoMerge "Make MmsServiceBroker more robust to MmsService crashes" into lmp-dev
Ye Wen [Wed, 8 Oct 2014 20:47:05 +0000 (20:47 +0000)]
Merge "Make MmsServiceBroker more robust to MmsService crashes" into lmp-dev

9 years agoMerge "Remove UsageEvents#resetToStart() as it doesn't work" into lmp-dev
Adam Lesinski [Wed, 8 Oct 2014 20:34:54 +0000 (20:34 +0000)]
Merge "Remove UsageEvents#resetToStart() as it doesn't work" into lmp-dev

9 years agoMake MmsServiceBroker more robust to MmsService crashes
Ye Wen [Tue, 7 Oct 2014 22:33:51 +0000 (15:33 -0700)]
Make MmsServiceBroker more robust to MmsService crashes

Retry connecting to MmsService when disconnected or upon each API call
if disconnected.

b/17862188

Change-Id: Iecfb0a6ffb59b94f6c1121bf00ba2db438ed7001

9 years agoMerge "Import translations. DO NOT MERGE" into lmp-dev
Geoff Mendal [Wed, 8 Oct 2014 19:53:11 +0000 (19:53 +0000)]
Merge "Import translations. DO NOT MERGE" into lmp-dev

9 years agoRemove UsageEvents#resetToStart() as it doesn't work
Adam Lesinski [Wed, 8 Oct 2014 19:33:16 +0000 (12:33 -0700)]
Remove UsageEvents#resetToStart() as it doesn't work

After completely iterating over a UsageEvents object, the internal parcel
is recycled. If resetToStart is called then, it does nothing.

Bug:17909428
Change-Id: I7bc68d3429e4621a50dedbfc1789576d44dbb3be

9 years agoTurn on dimension validation in wallpaper restore
Christopher Tate [Wed, 8 Oct 2014 19:19:48 +0000 (12:19 -0700)]
Turn on dimension validation in wallpaper restore

Bug 17906491

Change-Id: I4c76c3197df95b51a6e44d1fe2d522b6c05284e5

9 years agoam 9df3d67b: am 7f567e4a: docs: Changed date of GMS v6.1 (Manchego) release to Octobe...
Quddus Chong [Wed, 8 Oct 2014 19:08:31 +0000 (19:08 +0000)]
am 9df3d67b: am 7f567e4a: docs: Changed date of GMS v6.1 (Manchego) release to October 2014.

* commit '9df3d67bdc7c1fa79d0daab1f2ae5f69a476f8dd':
  docs: Changed date of GMS v6.1 (Manchego) release to October 2014.

9 years agoMerge "bootanimation: Tweak parameters for pcm_open for playing boot sounds." into...
Mike Lockwood [Wed, 8 Oct 2014 19:07:22 +0000 (19:07 +0000)]
Merge "bootanimation: Tweak parameters for pcm_open for playing boot sounds." into lmp-dev

9 years agoEnsure we correctly unblank displays when added.
Jeff Brown [Wed, 8 Oct 2014 19:06:39 +0000 (12:06 -0700)]
Ensure we correctly unblank displays when added.

A previous change introduced a regression in the case where
a device has been added but is initially blanked.  Because
we made changes to defer certain work until we escape the
critical section when making changes to the global display
state, we forgot to apply these changes when displays are
initially added.

This causes problems with HDMI displays remaining blanked
after they are plugged in.

Added a quick fix to ensure we perform the work when adding
a display although we don't bother trying to defer it outside
of the critical section.

Bug: 17909838
Change-Id: If5373d20d8827b7f4330a8cf49f8de64ca3f0740

9 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Oct 2014 18:53:40 +0000 (11:53 -0700)]
Import translations. DO NOT MERGE

Change-Id: I38a6ea57b8a5cde20e80427bcb46caf0b1048d2c
Auto-generated-cl: translation import

9 years agoBUG 17887323: Need to turn off DEBUG log spam in Job Scheduler
Georgi Nikolov [Wed, 8 Oct 2014 18:50:50 +0000 (11:50 -0700)]
BUG 17887323: Need to turn off DEBUG log spam in Job Scheduler

Change-Id: Ida7af915c5b616216692493434b63c521398dfb0

9 years agoMerge changes Id09663d8,Ie88f3750 into lmp-dev
Eino-Ville Talvala [Wed, 8 Oct 2014 18:48:29 +0000 (18:48 +0000)]
Merge changes Id09663d8,Ie88f3750 into lmp-dev

* changes:
  Camera2: Docs cleanup, especially units and range
  camera2: Update docs only for legacy devices

9 years agoCamera2: Docs cleanup, especially units and range
Eino-Ville Talvala [Mon, 6 Oct 2014 17:23:55 +0000 (10:23 -0700)]
Camera2: Docs cleanup, especially units and range

- Add entries for units and range into javadoc
- Fix up existing units entries and add new ones
- Fix up range entries to be consistent for enums
- Add range entries where it makes sense
- Minor fix to javadoc gen to allow for code indentation
- Lots of edits for consistency, especially to
  available* entries.

Bug: 16525650

Change-Id: Id09663d897ec98122073e6e13719731ec0de4dad

9 years agoActually tell the widget service that restore is starting
Christopher Tate [Wed, 8 Oct 2014 18:10:49 +0000 (11:10 -0700)]
Actually tell the widget service that restore is starting

Before beginning a full-system restore we need to tell the widget service,
so that it can properly start remapping IDs from the ground state.

Bug 17869323

Change-Id: I152257563f5b52cae67244e936bc2c44ced7618d

9 years agoMerge "Restored widget provider id not properly updated." into lmp-dev
Svetoslav [Wed, 8 Oct 2014 18:09:54 +0000 (18:09 +0000)]
Merge "Restored widget provider id not properly updated." into lmp-dev

9 years agoam 7f567e4a: docs: Changed date of GMS v6.1 (Manchego) release to October 2014.
Quddus Chong [Wed, 8 Oct 2014 18:01:05 +0000 (18:01 +0000)]
am 7f567e4a: docs: Changed date of GMS v6.1 (Manchego) release to October 2014.

* commit '7f567e4a1c561f60c6d31f6709508f5ec5a6ba88':
  docs: Changed date of GMS v6.1 (Manchego) release to October 2014.

9 years agoMerge "Put in real "code" (aka marketing) name." into lmp-dev
Dianne Hackborn [Wed, 8 Oct 2014 17:59:18 +0000 (17:59 +0000)]
Merge "Put in real "code" (aka marketing) name." into lmp-dev

9 years agodocs: Changed date of GMS v6.1 (Manchego) release to October 2014.
Quddus Chong [Wed, 8 Oct 2014 17:50:44 +0000 (10:50 -0700)]
docs: Changed date of GMS v6.1 (Manchego) release to October 2014.

Change-Id: I710c0eab6913988d8bc70ded344a2d60fa594d92

9 years agoEnsure metadata bundles are unparceled before making them available
RoboErik [Wed, 8 Oct 2014 17:38:42 +0000 (10:38 -0700)]
Ensure metadata bundles are unparceled before making them available

Bundles can't be read from multiple threads safely. This adds locking
around a read that had been previously overlooked and ensures that
unparcel is called on the metadata before it is even available to
other threads.

bug:17894033
Change-Id: I9a4b86a0d0af05b1dcba28a52df2e7a87c685704

9 years agoam 4f133894: Exclude KXmlParser from LayoutLib.
Deepanshu Gupta [Wed, 8 Oct 2014 17:34:12 +0000 (17:34 +0000)]
am 4f133894: Exclude KXmlParser from LayoutLib.

* commit '4f133894a6e98d8d30557ea42cec92cfb21fa5c9':
  Exclude KXmlParser from LayoutLib.

9 years agoMerge "Bring along more ApplicationInfo fields." into lmp-dev
Jeff Sharkey [Wed, 8 Oct 2014 17:25:38 +0000 (17:25 +0000)]
Merge "Bring along more ApplicationInfo fields." into lmp-dev

9 years agoBring along more ApplicationInfo fields.
Jeff Sharkey [Wed, 8 Oct 2014 17:14:53 +0000 (10:14 -0700)]
Bring along more ApplicationInfo fields.

When we added scan paths, we forgot to bring them along through
Parcel and copy constructor.

Bug: 17900178
Change-Id: I0ee9374f909d375768045976fd88cee7431f7d4d

9 years agoExclude KXmlParser from LayoutLib.
Deepanshu Gupta [Wed, 8 Oct 2014 01:36:57 +0000 (18:36 -0700)]
Exclude KXmlParser from LayoutLib.

The class was incorrectly being included in the LayoutLib.

Change-Id: I3c86662efa068019fe9165f2fc49a00d0a1b7f2d

9 years agoMerge "Import translations. DO NOT MERGE" into lmp-dev
Geoff Mendal [Wed, 8 Oct 2014 16:18:15 +0000 (16:18 +0000)]
Merge "Import translations. DO NOT MERGE" into lmp-dev

9 years agoImport translations. DO NOT MERGE
Geoff Mendal [Wed, 8 Oct 2014 15:31:15 +0000 (08:31 -0700)]
Import translations. DO NOT MERGE

Change-Id: I94aa8de0fe7a191d0312dbbb9f2b583c7afbdade
Auto-generated-cl: translation import

9 years agoam 59c04ece: am bcd1af39: Merge "docs: Wear UI Lib training fixes" into klp-modular...
Joe Fernandez [Wed, 8 Oct 2014 14:50:43 +0000 (14:50 +0000)]
am 59c04ece: am bcd1af39: Merge "docs: Wear UI Lib training fixes" into klp-modular-docs

* commit '59c04ece5614ffa20e10964a70c5faeafe565aa3':
  docs: Wear UI Lib training fixes

9 years agoam bcd1af39: Merge "docs: Wear UI Lib training fixes" into klp-modular-docs
Joe Fernandez [Wed, 8 Oct 2014 14:45:59 +0000 (14:45 +0000)]
am bcd1af39: Merge "docs: Wear UI Lib training fixes" into klp-modular-docs

* commit 'bcd1af39fa674dcc46ddb30778304eaf67100a13':
  docs: Wear UI Lib training fixes

9 years agoMerge "docs: Wear UI Lib training fixes" into klp-modular-docs
Joe Fernandez [Wed, 8 Oct 2014 14:37:34 +0000 (14:37 +0000)]
Merge "docs: Wear UI Lib training fixes" into klp-modular-docs

9 years agoAll (er, L) is finally revealed.
Dan Sandler [Mon, 6 Oct 2014 05:04:47 +0000 (01:04 -0400)]
All (er, L) is finally revealed.

If you exceed 20000 points, please send in a screenshot.

Bug: 15984887
Change-Id: I1164160bfa8e7dca3b9e7d7ca5d50ef9abd38b61

9 years agoam 11b14e39: (-s ours) LayoutLib: Use ICU\'s line break algo. [DO NOT MERGE]
Deepanshu Gupta [Wed, 8 Oct 2014 03:28:20 +0000 (03:28 +0000)]
am 11b14e39: (-s ours) LayoutLib: Use ICU\'s line break algo. [DO NOT MERGE]

* commit '11b14e3996d3602155d6a61afb286e5bc0941a1f':
  LayoutLib: Use ICU's line break algo. [DO NOT MERGE]

9 years agoPut in real "code" (aka marketing) name.
Dianne Hackborn [Wed, 8 Oct 2014 03:17:19 +0000 (20:17 -0700)]
Put in real "code" (aka marketing) name.

Change-Id: Idb3976edfae37293ed75cb5b869b4b42d8042bbe

9 years agoRestored widget provider id not properly updated.
Svetoslav [Wed, 8 Oct 2014 02:26:28 +0000 (19:26 -0700)]
Restored widget provider id not properly updated.

During restore first the provider records and then the applications
are restored. Therefore, we keep the restored provider records in a
zombie state and once we get the package install broadcasts from the
package manager we update the zombie providers to be real ones. The
bug was that while doing this we were not updating the provider id
from one with an undefined UID to the one with the UID under which
its package now runs.

bug:17869323

Change-Id: I20b7cbfd2f90e2f5bf3a6b858d8da99cc1c82841

9 years agoLayoutLib: Use ICU's line break algo. [DO NOT MERGE]
Deepanshu Gupta [Sat, 2 Aug 2014 20:16:24 +0000 (13:16 -0700)]
LayoutLib: Use ICU's line break algo. [DO NOT MERGE]

Change-Id: I7e5b0ab7423a72f5a4b0e1163d0a537f0b03ba07
(cherry picked from commit 760f6394d0f65fbb5365186e8e068d53c506b653)

9 years agoAudioService: Fix monitorRotation for landscape applications
Jon Eklund [Thu, 23 Jan 2014 23:53:48 +0000 (17:53 -0600)]
AudioService: Fix monitorRotation for landscape applications

Current implmentation only sends rotation updates on orientation
changes, so does not handle direct 0<->180 or 90<->270 transitions.

Update rotation based on an OrientationEventListener instead of
Intent.ACTION_CONFIGURATION_CHANGED

Bug 17606902

Change-Id: I01dfcd1c587f5b2e8a96365c2389782ad77936ef

9 years agoam 916a6ea3: am 6af8fc7f: Merge "docs:64 bit image and skd update" into klp-modular...
Rich Slogar [Wed, 8 Oct 2014 00:39:38 +0000 (00:39 +0000)]
am 916a6ea3: am 6af8fc7f: Merge "docs:64 bit image and skd update" into klp-modular-docs

* commit '916a6ea30377730d578692b625b1c18aa9f13564':
  docs:64 bit image and skd update

9 years agoam 6af8fc7f: Merge "docs:64 bit image and skd update" into klp-modular-docs
Rich Slogar [Wed, 8 Oct 2014 00:34:38 +0000 (00:34 +0000)]
am 6af8fc7f: Merge "docs:64 bit image and skd update" into klp-modular-docs

* commit '6af8fc7f89cb5dec15c23ee04c271188ff11138d':
  docs:64 bit image and skd update

9 years agoMerge "Fix "Wrong password" message shown when using BT keyboard." into lmp-dev
Jim Miller [Wed, 8 Oct 2014 00:32:36 +0000 (00:32 +0000)]
Merge "Fix "Wrong password" message shown when using BT keyboard." into lmp-dev

9 years agoMerge "docs:64 bit image and skd update" into klp-modular-docs
Rich Slogar [Wed, 8 Oct 2014 00:31:42 +0000 (00:31 +0000)]
Merge "docs:64 bit image and skd update" into klp-modular-docs

9 years agoMerge "adding debug information to bug report for Bug:16751877" into lmp-dev
vandwalle [Wed, 8 Oct 2014 00:04:01 +0000 (00:04 +0000)]
Merge "adding debug information to bug report for Bug:16751877" into lmp-dev

9 years agoMerge "Reapply animation duration scale each time it is started." into lmp-dev
Jeff Brown [Tue, 7 Oct 2014 23:53:20 +0000 (23:53 +0000)]
Merge "Reapply animation duration scale each time it is started." into lmp-dev

9 years agoMerge "Suppress redundant power key presses while turning screen on." into lmp-dev
Jeff Brown [Tue, 7 Oct 2014 23:52:51 +0000 (23:52 +0000)]
Merge "Suppress redundant power key presses while turning screen on." into lmp-dev

9 years agoFix "Wrong password" message shown when using BT keyboard.
Jim Miller [Sat, 4 Oct 2014 01:54:03 +0000 (18:54 -0700)]
Fix "Wrong password" message shown when using BT keyboard.

The code was assuming we're always using soft IME. When a physical
keyboard is attached, we get two events; ACTION_DOWN and ACTION_UP.
The code attempted to unlock the device twice.  The second attempt
failed because the TextView was cleared by the first successful attempt.

Fixes bug 17690585

Change-Id: Ia92a97400b4404d0cbe86aacb727009e95914327

9 years agoam bb5a1848: am 8730092a: Merge "docs: Added API highlights for Google Play services...
Quddus Chong [Tue, 7 Oct 2014 23:49:26 +0000 (23:49 +0000)]
am bb5a1848: am 8730092a: Merge "docs: Added API highlights for Google Play services 6.1 (Manchego)." into klp-modular-docs

* commit 'bb5a18487285455131b88caf4a40726f0e4b444c':
  docs: Added API highlights for Google Play services 6.1 (Manchego).

9 years agoam bf29d697: am 6628e602: Merge "Updataed Google Play services Javadocs for v6.1...
Quddus Chong [Tue, 7 Oct 2014 23:49:16 +0000 (23:49 +0000)]
am bf29d697: am 6628e602: Merge "Updataed Google Play services Javadocs for v6.1 (Manchego) release." into klp-modular-docs

* commit 'bf29d697803e3fe0bcb450d2e5b36d0a75cc1148':
  Updataed Google Play services Javadocs for v6.1 (Manchego) release.

9 years agoam a18075e8: am bd964cad: docs: Removing references to self note on Common Intents...
Ricardo Cervera [Tue, 7 Oct 2014 23:49:06 +0000 (23:49 +0000)]
am a18075e8: am bd964cad: docs: Removing references to self note on Common Intents page.

* commit 'a18075e82b603762382232816c0d74abcc7e46e7':
  docs: Removing references to self note on Common Intents page.

9 years agoam 6d30f576: am 3f7b4d8f: Merge "docs: Update Common Intents page with Google Now...
Ricardo Cervera [Tue, 7 Oct 2014 23:48:48 +0000 (23:48 +0000)]
am 6d30f576: am 3f7b4d8f: Merge "docs: Update Common Intents page with Google Now actions" into klp-modular-docs

* commit '6d30f576146725ee81b8cb753584985a2758b566':
  docs: Update Common Intents page with Google Now actions

9 years agoSuppress redundant power key presses while turning screen on.
Jeff Brown [Tue, 7 Oct 2014 23:42:28 +0000 (16:42 -0700)]
Suppress redundant power key presses while turning screen on.

Sometimes it can take a long time to turn the screen on.  That's not
good but what's worse is that the user will often get impatient
and press the power button again which effectively cancels the
process and makes the screen not come on at all.  The user may
then conclude that the device ignored the power key press.

This change suppresses power key presses while we're already in the
process of turning the screen on so that at least the screen comes
on eventually, even if it's slower than we would like.

Bug: 17753363
Change-Id: I23083873e35a3dcfa5c20b6f870f53c18e465582

9 years agoam 8730092a: Merge "docs: Added API highlights for Google Play services 6.1 (Manchego...
Quddus Chong [Tue, 7 Oct 2014 23:33:10 +0000 (23:33 +0000)]
am 8730092a: Merge "docs: Added API highlights for Google Play services 6.1 (Manchego)." into klp-modular-docs

* commit '8730092af798d27b9e9a9a4ba00cef0d3ebea55f':
  docs: Added API highlights for Google Play services 6.1 (Manchego).

9 years agoam 6628e602: Merge "Updataed Google Play services Javadocs for v6.1 (Manchego) releas...
Quddus Chong [Tue, 7 Oct 2014 23:33:03 +0000 (23:33 +0000)]
am 6628e602: Merge "Updataed Google Play services Javadocs for v6.1 (Manchego) release." into klp-modular-docs

* commit '6628e602fb616355db8272a697a7004d91f485b8':
  Updataed Google Play services Javadocs for v6.1 (Manchego) release.

9 years agoMerge "docs: Added API highlights for Google Play services 6.1 (Manchego)." into...
Quddus Chong [Tue, 7 Oct 2014 23:27:01 +0000 (23:27 +0000)]
Merge "docs: Added API highlights for Google Play services 6.1 (Manchego)." into klp-modular-docs

9 years agoMerge "Updataed Google Play services Javadocs for v6.1 (Manchego) release." into...
Quddus Chong [Tue, 7 Oct 2014 23:26:48 +0000 (23:26 +0000)]
Merge "Updataed Google Play services Javadocs for v6.1 (Manchego) release." into klp-modular-docs

9 years agoMerge "ignore null TaskStack and continue layout for PRIVATE_PRESENTATION window...
keunyoung [Tue, 7 Oct 2014 22:58:47 +0000 (22:58 +0000)]
Merge "ignore null TaskStack and continue layout for PRIVATE_PRESENTATION window" into lmp-dev

9 years agoReapply animation duration scale each time it is started.
Jeff Brown [Tue, 7 Oct 2014 22:55:35 +0000 (15:55 -0700)]
Reapply animation duration scale each time it is started.

When Battery Saver mode is enabled, we set the animation duration
scale factor to 0 to effectively disable all animations.  Later
when it is disabled, we reset the animation duration scale
factor to 1.

This change ensures that we reapply the duration scale factor
whenever the animation is started instead of only applying it
once when the duration is set (usually when the animation is
created).  This ensures that the correct scale factor is applied
even when it changes after the animation has been initialized.

Previously, certain animations would continue to be suppressed
even after Battery Saver mode was disengaged.  This wasn't much
of an issue when the duration scale was initially implemented as
a developer setting but now that it is exposed via Battery Saver
the artifacts caused by this bug have become visible to users.

Bug: 17887431
Change-Id: I91ba5ca0505d02ac389a31d067e38886112fa0c8

9 years agoMerge "Add mProperSigningKeySet to PackageKeySetData constructor." into lmp-dev
dcashman [Tue, 7 Oct 2014 22:37:20 +0000 (22:37 +0000)]
Merge "Add mProperSigningKeySet to PackageKeySetData constructor." into lmp-dev

9 years agoam 4be6fdeb: am ba2199fa: Merge "docs: Modified the notice in the android.location...
Quddus Chong [Tue, 7 Oct 2014 22:23:40 +0000 (22:23 +0000)]
am 4be6fdeb: am ba2199fa: Merge "docs: Modified the notice in the android.location package file to strongly encourage developers to migrate to the Google Play Services Location API." into klp-modular-docs

* commit '4be6fdebdd386dc18159c5557db91936a62f42ab':
  docs: Modified the notice in the android.location package file to strongly encourage developers to migrate to the Google Play Services Location API.

9 years agoam 0e61e44d: am 2a02b881: Merge "docs: Training class for the Wearable UI Library...
Ricardo Cervera [Tue, 7 Oct 2014 22:23:31 +0000 (22:23 +0000)]
am 0e61e44d: am 2a02b881: Merge "docs: Training class for the Wearable UI Library" into klp-modular-docs

* commit '0e61e44ddf8c8abb774020cde90ec44d4ae43bc6':
  docs: Training class for the Wearable UI Library

9 years agoam 64460a2b: am 83d5c9bf: docs:change required ADT version to 23.0.2
Rich Slogar [Tue, 7 Oct 2014 22:23:24 +0000 (22:23 +0000)]
am 64460a2b: am 83d5c9bf: docs:change required ADT version to 23.0.2

* commit '64460a2b6e0166d4c24b195f850e67265fb485f5':
  docs:change required ADT version to 23.0.2

9 years agoam 8267ffcc: am cef9aab6: Merge "make sdk download links use HTTPS bug: 8033954"...
smain@google.com [Tue, 7 Oct 2014 22:23:04 +0000 (22:23 +0000)]
am 8267ffcc: am cef9aab6: Merge "make sdk download links use HTTPS bug: 8033954" into klp-modular-docs

* commit '8267ffccbe58ea348a53a0e6058bf902d6e8932a':
  make sdk download links use HTTPS bug: 8033954

9 years agoMerge "Accept any restored wallpaper" into lmp-dev
Christopher Tate [Tue, 7 Oct 2014 21:50:07 +0000 (21:50 +0000)]
Merge "Accept any restored wallpaper" into lmp-dev

9 years agobootanimation: Tweak parameters for pcm_open for playing boot sounds.
Mike Lockwood [Tue, 7 Oct 2014 21:47:26 +0000 (14:47 -0700)]
bootanimation: Tweak parameters for pcm_open for playing boot sounds.

Set start_threshold and avail_min to 1/4th period size and stop_threshold to INT_MAX

Change-Id: I0a3aac18533709daa86a024cdd6a32086410723a

9 years agoignore null TaskStack and continue layout for PRIVATE_PRESENTATION window
keunyoung [Tue, 7 Oct 2014 21:26:16 +0000 (14:26 -0700)]
ignore null TaskStack and continue layout for PRIVATE_PRESENTATION window

bug: 17677973
Change-Id: I2666a1c1cf8956e60d7261912da34d1999131eba

9 years agoadding debug information to bug report for Bug:16751877
vandwalle [Mon, 6 Oct 2014 22:04:07 +0000 (15:04 -0700)]
adding debug information to bug report for Bug:16751877

Change-Id: I9d417c20c6b6721933a4eb943c1305845005facf

9 years agoAdd mProperSigningKeySet to PackageKeySetData constructor.
dcashman [Tue, 7 Oct 2014 21:16:35 +0000 (14:16 -0700)]
Add mProperSigningKeySet to PackageKeySetData constructor.

Bug: 17847565
Change-Id: Iafa9650140e82d244d2336a07232bd40bf3c5eb8

9 years agoMerge "Fixing where call goes from disconnecting to active to disconnecting state...
Tyler Gunn [Tue, 7 Oct 2014 20:46:38 +0000 (20:46 +0000)]
Merge "Fixing where call goes from disconnecting to active to disconnecting state." into lmp-dev

9 years agoMerge "Load shared library dependencies for AppWidgets" into lmp-dev
Adam Lesinski [Tue, 7 Oct 2014 19:51:16 +0000 (19:51 +0000)]
Merge "Load shared library dependencies for AppWidgets" into lmp-dev

9 years agoLoad shared library dependencies for AppWidgets
Adam Lesinski [Tue, 7 Oct 2014 19:14:45 +0000 (12:14 -0700)]
Load shared library dependencies for AppWidgets

PackageManager and AppWidgetHostServiceImpl should
be loading the resources of any shared libraries being
used by the app, as they have references in their Widgets
or application icons/labels, etc.

Bug:17668152
Change-Id: I359662334edb125d7570089916727df4eeba02bb

9 years agoMerge "Hide hotspot tile if 'provisioning' is needed" into lmp-dev
Jason Monk [Tue, 7 Oct 2014 18:53:20 +0000 (18:53 +0000)]
Merge "Hide hotspot tile if 'provisioning' is needed" into lmp-dev

9 years agoHide hotspot tile if 'provisioning' is needed
Jason Monk [Tue, 7 Oct 2014 18:22:59 +0000 (14:22 -0400)]
Hide hotspot tile if 'provisioning' is needed

If we need carrier entitlement checks don't show the hotspot tile
which could bypass them, instead make the user go to settings.

Bug: 17879554
Change-Id: I30a5b51b26a2d4e977579b71a16c3c7a8d004eea

9 years agodocs:64 bit image and skd update
Rich Slogar [Tue, 7 Oct 2014 18:06:07 +0000 (11:06 -0700)]
docs:64 bit image and skd update

Change-Id: I53d3d8e8714cb4689ba80766b155fb1b3ea93484

9 years agoam bd964cad: docs: Removing references to self note on Common Intents page.
Ricardo Cervera [Tue, 7 Oct 2014 18:38:24 +0000 (18:38 +0000)]
am bd964cad: docs: Removing references to self note on Common Intents page.

* commit 'bd964cadd4846d5d954eadb7fcd2a61e51814c65':
  docs: Removing references to self note on Common Intents page.

9 years agoFix build, previous commit failed to remove an import
Andres Morales [Tue, 7 Oct 2014 18:14:21 +0000 (11:14 -0700)]
Fix build, previous commit failed to remove an import

Bug:17883273
Change-Id: I6ef422eae83fb8b44279f1bf5a811858b791afa7

9 years agoMerge "Remove dead NFC unlock code from fw/base" into lmp-dev
Andres Morales [Tue, 7 Oct 2014 18:11:20 +0000 (18:11 +0000)]
Merge "Remove dead NFC unlock code from fw/base" into lmp-dev

9 years agoMerge "Update 'No notifications' text on configuration change" into lmp-dev
Jorim Jaggi [Tue, 7 Oct 2014 17:48:00 +0000 (17:48 +0000)]
Merge "Update 'No notifications' text on configuration change" into lmp-dev

9 years agodocs: Removing references to self note on Common Intents page.
Ricardo Cervera [Tue, 7 Oct 2014 17:37:19 +0000 (10:37 -0700)]
docs: Removing references to self note on Common Intents page.

Change-Id: Ia1324f2363ce66ad0019946605a6a74a4cd28ecc

9 years agoFixing where call goes from disconnecting to active to disconnecting state.
Tyler Gunn [Tue, 7 Oct 2014 17:14:55 +0000 (10:14 -0700)]
Fixing where call goes from disconnecting to active to disconnecting state.

- Adding disconnecting state to telecom used to communicate that a call is
being disconnected to InCall UI (rather than it existing only as a state
in the InCall UI).

Bug: 17821930
Change-Id: I6c2d9521915ba154c0468eea62c12c30060edd2e

9 years agoMerge "Set the default user restrictions to disallow calling and sms" into lmp-dev
Amith Yamasani [Tue, 7 Oct 2014 17:11:33 +0000 (17:11 +0000)]
Merge "Set the default user restrictions to disallow calling and sms" into lmp-dev