ztenghui
874bcd82c2
Fix the create() for the attrs position
...
Change-Id: Ieb93053f28502cabbf655c4a27c4864845da212e
2014-07-31 20:16:18 +00:00
Vinit Deshpande
38a7170449
Merge "Rename HotspotListener to BssidListener" into lmp-dev
2014-07-30 19:31:16 +00:00
ztenghui
1c4d8b2173
Correct the tag's name in the exceptions
...
Change-Id: I9d1499fbcf8adb6bf0c5c0b7a10a8b480a708c09
2014-07-31 19:42:31 +00:00
Joe Fernandez
8d7c55bd10
am 441e7aa2: am eb4bc851: am 69ed58ac: Merge "docs: Adding TIF one-pager to TV docs in L-Preview" into klp-modular-docs
...
* commit '441e7aa23478b8de386efc69d43f889979bc6eee':
docs: Adding TIF one-pager to TV docs in L-Preview
2014-07-31 18:43:21 +00:00
Joe Fernandez
441e7aa234
am eb4bc851: am 69ed58ac: Merge "docs: Adding TIF one-pager to TV docs in L-Preview" into klp-modular-docs
...
* commit 'eb4bc851aade1090c0a4e1f1e6f7ecd136b4a47a':
docs: Adding TIF one-pager to TV docs in L-Preview
2014-07-31 18:40:05 +00:00
Joe Fernandez
eb4bc851aa
am 69ed58ac: Merge "docs: Adding TIF one-pager to TV docs in L-Preview" into klp-modular-docs
...
* commit '69ed58aced0e884d7758d84067134b04fbcee9c0':
docs: Adding TIF one-pager to TV docs in L-Preview
2014-07-31 18:35:02 +00:00
Wonsik Kim
c2b74b73a1
Fix NPE when fused geofence hardware is not available.
...
b/16690237
Change-Id: I3ac50c8fd50fc799afcfc76126a5fd0c9ba0a5f4
2014-07-31 18:24:23 +00:00
Eunae Kim
ad3aa32fee
Fix a bug that the RecentTask list of other’s may show up to non-primary users.
...
Cherry-pick from aosp to lmp-dev.
When switching to a newly created user, the user may face this bug
when he opens the RecentTask screen.
A possible bug scenario is described as follows:
A user id of a removed user may be recycled when created a new user.
However, mRecentTasks is not correctly controlled so that old
information may still remain and be possibly mapped to wrong user.
This patch prevents this bug by explicitly removing old information
in mRecentTasks when removing existing user.
Change-Id: I1874dbd604598a5d740ae1e034981e21214c15c6
Signed-off-by: Eunae Kim <eunae.kim@lge.com>
Conflicts:
services/java/com/android/server/am/ActivityManagerService.java
2014-07-31 10:27:28 -07:00
riddle_hsu
214be42ea6
[ActivityManager] Prevent coredump file may not complete for testing.
...
Cherry-pick from aosp to lmp-dev
Sympton:
During testing, skip kill native crash process manually because it
will continue to die by default.
Root Cause:
Large process may take some time to do coredump.In auto test, crash
process will be killed immediately that results incomplete coredump
file.
Solution:
If the tester (IActivityController) will handle app crash event,
Do not kill native crashed process if the rom is debuggable.
Change-Id: Ia360af147d694125d440e5ba2f958c4759a50494
Conflicts:
services/java/com/android/server/am/ActivityManagerService.java
2014-07-31 10:18:59 -07:00
Raph Levien
ebbbb2cfc3
Merge "Re-remove AndroidEmoji.ttf." into lmp-dev
2014-07-30 19:31:16 +00:00
Roozbeh Pournader
37cc0713e0
Re-remove AndroidEmoji.ttf.
...
It was mistakenly re-added in 6feb729b686b902be2520a91281e1a000c055da2.
Change-Id: I99a41ed8e6f1975e9808d8063e594fbb996d4334
(cherry picked from commit a7d8d7bfa75b283588aacae16cce78f6161acce9)
2014-07-31 16:58:53 +00:00
Roozbeh Pournader
fa4aeeeb71
Crunch Roboto and fix its digits to have the same width.
...
Update to upstream version 2.001045, which adds fontcrunch to the font
production process and fixes a problem with uneven digit widths. Should fix
https://code.google.com/p/android-developer-preview/issues/detail?id=330 .
The font footprint is reduced by 705KB, most of it due to the crunching, but
also by using a newer version of fonttools that removes extra unnecessary
paddings from the glyf table.
Bug: 15348046
Bug: 16296048
Bug: 16299966
Change-Id: I838711916f8c47db011cfe889b232e60e6f1aa0c
(cherry picked from commit 6feb729b686b902be2520a91281e1a000c055da2)
2014-07-31 16:56:15 +00:00
Mike Lockwood
2754fd0cd3
Add toString() methods to some audio classes to help with debugging.
...
Change-Id: I2b61d8cdfbcaa7671705771325205b074c50ab1e
2014-07-31 16:50:02 +00:00
George Mount
cad10680b7
Merge "Fix visibility propagation check." into lmp-dev
2014-07-30 23:34:26 +00:00
riddle_hsu
9bcc6e83d9
[ActivityManager] Avoid mistaking visibility by finishing task.
...
Cherry-picked from aosp into lmp-dev.
Sympton:
Next activity only adds to history but does not launch/resume then results ANR.
Root Cause:
In a rare timing, some windows are switched at the same time,
it will cause some finishing records on the top temporarily,
then set startIt to false that skip to resume the real top activty.
Solution:
If all activities in a task are finishing, do not use it to check.
The behavior/checking is the same concept as in JellyBean:
// If starting in an existing task, find where that is...
boolean startIt = true;
for (int i = NH-1; i >= 0; i--) {
ActivityRecord p = mHistory.get(i);
if (p.finishing) { // <--
continue;
}
Change-Id: I9d81a7b5182400c52e173da23eee61c74692beee
Conflicts:
services/java/com/android/server/am/ActivityStack.java
2014-07-31 17:07:39 +00:00
George Mount
6ceac2eafb
Fix visibility propagation check.
...
Bug 16704963
Change-Id: I2538bac4b4565ac8c6b27407c7679fea55b1092b
2014-07-31 17:05:37 +00:00
destradaa
beea442e72
Fix crash in Volantis because there is not FLP support.
...
b/16690237
Change-Id: Ie2dd159ad4e9b5cf4b3e2e66023b456927f18130
2014-07-31 17:02:01 +00:00
Joe Fernandez
a3e521540b
am ecf76d1c: am b83127f0: Merge "docs: Add adb over TCP/IP connection instructions to ADT-1 FAQ" into klp-modular-docs
...
* commit 'ecf76d1cfd2846412270e6361ec8ba4cfccf8bec':
docs: Add adb over TCP/IP connection instructions to ADT-1 FAQ
2014-07-30 18:14:04 +00:00
Joe Fernandez
ecf76d1cfd
am b83127f0: Merge "docs: Add adb over TCP/IP connection instructions to ADT-1 FAQ" into klp-modular-docs
...
* commit 'b83127f0cf35a2d95684293818ca25171f6643e1':
docs: Add adb over TCP/IP connection instructions to ADT-1 FAQ
2014-07-30 18:09:27 +00:00
Alan Lau
40274ada4a
am b12318be: Merge "Revert "Revert "DO NOT MERGE Fix line breaking for clusters in narrow views""" into klp-modular-dev
...
* commit 'b12318be13be00842d124e4391ce5eabce2d5104':
Revert "Revert "DO NOT MERGE Fix line breaking for clusters in narrow views""
2014-07-30 17:47:03 +00:00
Alan Lau
839ca0d5fa
am 06a84554: Merge "Revert "Revert "DO NOT MERGE Fix extraneous allocation and copying""" into klp-modular-dev
...
* commit '06a8455421978d06597de2abfccabef928d06056':
Revert "Revert "DO NOT MERGE Fix extraneous allocation and copying""
2014-07-30 17:44:20 +00:00
Andrew Solovay
60e7f54187
am d46bc784: am 81364215: Merge "docs: Revised page to include info about new Publisher API." into klp-modular-docs
...
* commit 'd46bc7845c221b84f9b4e570b95f407c7fc6d0e7':
docs: Revised page to include info about new Publisher API.
2014-07-30 17:37:06 +00:00
Alan Lau
231a32a132
am c0062272: Merge "Revert "Revert "DO NOT MERGE Implement line breaking using ICU break iterator""" into klp-modular-dev
...
* commit 'c006227265d7ac705ebeef2f7d87104fdb63f32a':
Revert "Revert "DO NOT MERGE Implement line breaking using ICU break iterator""
2014-07-30 17:37:02 +00:00
Andrew Solovay
d46bc7845c
am 81364215: Merge "docs: Revised page to include info about new Publisher API." into klp-modular-docs
...
* commit '813642158979aca52b9d3913e52dda877d74a992':
docs: Revised page to include info about new Publisher API.
2014-07-30 17:34:20 +00:00
Ricardo Cervera
9ae4c6f874
am b6bfa9e4: am a7898781: Merge "docs: Added system requirements for Studio. Bug: 16566355" into klp-modular-docs
...
* commit 'b6bfa9e45a953b83289ee57da661746deae7a63f':
docs: Added system requirements for Studio. Bug: 16566355
2014-07-30 16:49:57 +00:00
Ricardo Cervera
b6bfa9e45a
am a7898781: Merge "docs: Added system requirements for Studio. Bug: 16566355" into klp-modular-docs
...
* commit 'a7898781d6182b5c73a0a3899b71162f92582f66':
docs: Added system requirements for Studio. Bug: 16566355
2014-07-30 16:46:07 +00:00
Joe Fernandez
b83127f0cf
Merge "docs: Add adb over TCP/IP connection instructions to ADT-1 FAQ" into klp-modular-docs
2014-07-30 16:17:51 +00:00
Joe Fernandez
0d568c98c1
docs: Add adb over TCP/IP connection instructions to ADT-1 FAQ
...
Change-Id: Ifa8831e1594470ecf65761efea472de79aaf5ece
2014-07-30 10:10:19 -07:00
Alan Lau
06a8455421
Merge "Revert "Revert "DO NOT MERGE Fix extraneous allocation and copying""" into klp-modular-dev
2014-07-30 16:17:51 +00:00
Alan Lau
7ab1900a5a
Revert "Revert "DO NOT MERGE Fix extraneous allocation and copying""
...
This reverts commit af60e56b39582ea90ccd7601cd06350a50bf6500.
Change-Id: I1aa698608773b9e540457831e11218f371c71268
2014-07-30 17:35:29 +00:00
Alan Lau
c006227265
Merge "Revert "Revert "DO NOT MERGE Implement line breaking using ICU break iterator""" into klp-modular-dev
2014-07-30 16:17:51 +00:00
Alan Lau
273906bb6a
Revert "Revert "DO NOT MERGE Implement line breaking using ICU break iterator""
...
This reverts commit 77d6f36bbc76dbed51bea17d1ffcd3c1d6ffd30f.
Change-Id: I10b6d9e3d82b0f2b6dc154465a4b2f1db8eed058
2014-07-30 17:30:15 +00:00
Vinit Deshpande
ea676a0e51
Rename HotspotListener to BssidListener
...
And other usage of term Hotspot. This is to be technically correct
with the name usage, should the API become public later.
This change also fixes few outstanding requests from GScan API.These
include
a. An event with scan results when REPORT_AFTER_EACH_SCAN is set.
b. ScanSettings now takes in number of APs as an argument.
c. Removed single shot scan API (since it is not implemented anyway)
Change-Id: Id160f9f14193a37cce5f3ab8d6ea528344b788a0
2014-07-30 08:54:41 -07:00
Ricardo Cervera
a7898781d6
Merge "docs: Added system requirements for Studio. Bug: 16566355" into klp-modular-docs
2014-07-29 22:44:51 +00:00
Alan Lau
b12318be13
Merge "Revert "Revert "DO NOT MERGE Fix line breaking for clusters in narrow views""" into klp-modular-dev
2014-07-29 21:36:00 +00:00
Alan Lau
1fa3c9bef2
Revert "Revert "DO NOT MERGE Fix line breaking for clusters in narrow views""
...
This reverts commit cbeef01cce314e3a3977b042d8ec0744816c0df4.
Change-Id: I170ccb2264941e8a8b090b3bb553970414f0c4eb
2014-07-30 17:35:20 +00:00
Andrew Solovay
8136421589
Merge "docs: Revised page to include info about new Publisher API." into klp-modular-docs
2014-07-29 21:36:00 +00:00
Dirk Dougherty
78ad92b48f
am 4ff57a9a: am fa3d1b2a: Doc change: add notice for admob sdk upgrade.
...
* commit '4ff57a9aee76bdfe6808ac9c64f2e90bc14a25ae':
Doc change: add notice for admob sdk upgrade.
2014-07-29 21:07:53 +00:00
Dirk Dougherty
4ff57a9aee
am fa3d1b2a: Doc change: add notice for admob sdk upgrade.
...
* commit 'fa3d1b2a27448b82ec1aa6f75c95ed17c4f46748':
Doc change: add notice for admob sdk upgrade.
2014-07-29 21:03:25 +00:00
Andrew Solovay
d28470e87a
docs: Revised page to include info about new Publisher API.
...
Also moved the blurb to the "Google Play Distribution" cover page, and
adjusted the TOC accordingly. Per DDoughterty@ 's request, moved the
"Purchase Verification Strategies" section to billing_subscriptions.jd
Page is staged to:
http://asolovay.mtv:9543/google/play/billing/gp-purchase-status-api.html
http://asolovay.mtv:9543/google/play/billing/billing_subscriptions.html#strategies
Change-Id: I884e2f3f25c76fcb055e663058d1a4f4642fb558
2014-07-29 14:00:03 -07:00
Dirk Dougherty
fa3d1b2a27
Doc change: add notice for admob sdk upgrade.
...
Change-Id: I9281b17e4ff277ef99ae57ce0360e05f4231e7ff
2014-07-29 20:32:17 +00:00
Ricardo Cervera
932ced3a30
docs: Added system requirements for Studio. Bug: 16566355
...
Change-Id: I1d3d80ce718d64e01fd939aa177c950d56065555
2014-07-29 13:24:34 -07:00
Robert Ly
9c53194a6f
am 58967bfb: am 1c977b37: Merge "docs: fix typo bug 16623189" into klp-modular-docs
...
* commit '58967bfbe824f020194872a6d0a5204b54e6043a':
docs: fix typo bug 16623189
2014-07-29 16:34:01 +00:00
Robert Ly
58967bfbe8
am 1c977b37: Merge "docs: fix typo bug 16623189" into klp-modular-docs
...
* commit '1c977b3744dbe916edde2e256a39c30e5888ef4f':
docs: fix typo bug 16623189
2014-07-29 16:30:07 +00:00
Robert Ly
0029ef6759
am dadb473e: am 9613b433: Merge "docs: fix typo" into klp-modular-docs
...
* commit 'dadb473e2b9dc7bf2691dea7153c6700102e6562':
docs: fix typo
2014-07-29 15:42:24 +00:00
Robert Ly
dadb473e2b
am 9613b433: Merge "docs: fix typo" into klp-modular-docs
...
* commit '9613b433f47162d008f034afbb16deac16532662':
docs: fix typo
2014-07-29 15:38:02 +00:00
Ricardo Cervera
7f214e6149
am 8d1aa957: am 652e5c7e: Merge "docs: Describe the alloc tracker in Android Studio" into klp-modular-docs
...
* commit '8d1aa95729a44a953dd5cd434f2c7380e6d1f641':
docs: Describe the alloc tracker in Android Studio
2014-07-29 15:32:57 +00:00
Ricardo Cervera
8d1aa95729
am 652e5c7e: Merge "docs: Describe the alloc tracker in Android Studio" into klp-modular-docs
...
* commit '652e5c7ef1f8176dc680f7c4ba782164269b03b0':
docs: Describe the alloc tracker in Android Studio
2014-07-29 15:29:00 +00:00
Ricardo Cervera
5ff390be1b
am df881ccc: am 321e0302: docs: Fix Wear docs issues.
...
* commit 'df881ccc1fe5efefa4a71cf8e5f663f9e2911151':
docs: Fix Wear docs issues.
2014-07-29 15:07:56 +00:00
Ricardo Cervera
df881ccc1f
am 321e0302: docs: Fix Wear docs issues.
...
* commit '321e030202cb74cad0dd8a4950cffe361a5072c8':
docs: Fix Wear docs issues.
2014-07-29 15:01:11 +00:00