summaryrefslogtreecommitdiffstats
path: root/packages
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Handle volumes without visible paths." into mnc-devJeff Sharkey2015-07-311-1/+5
|\
| * Handle volumes without visible paths.Jeff Sharkey2015-07-301-1/+5
| | | | | | | | | | | | | | | | Transient volumes like USB drives are not mounted as visible, so we shouldn't be kicking off media scanner for them. Bug: 22545248 Change-Id: Ic8f2d3134f1edb8b2a12e8ff283eceeeb230f48b
* | The heads up now correctly dissapears when clickingSelim Cinek2015-07-307-2/+41
| | | | | | | | | | Bug: 22729955 Change-Id: I977b36823bf936baab527f932b1e5576241f4d71
* | Merge "Fixed a heads up crash" into mnc-devSelim Cinek2015-07-301-1/+1
|\ \
| * | Fixed a heads up crashSelim Cinek2015-07-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Some references to notifications were still kept around while timing out, leading to small leaks and sometimes crashes. Bug: 22819475 Change-Id: I1429b5669366521c6374efbcae6c26d6e407d8cc
* | | Merge "Introduced android.permission.PEERS_MAC_ADDRESS permission" into mnc-devFyodor Kupolov2015-07-301-1/+1
|\ \ \
| * | | Introduced android.permission.PEERS_MAC_ADDRESS permissionFyodor Kupolov2015-07-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduced signature-level permission android.permission.PEERS_MAC_ADDRESS. It allows access to MAC addresses of WiFi and Bluetooth peer devices, without having location permission or even if location is turned off. Bug: 21852542 Bug: 22728628 Change-Id: If0ff80636e57b38dbedc8fcf5f520a3a6d6f734e
* | | | Don't call cancel() when fingerprint auth failsJim Miller2015-07-301-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | KeyguardUpdateMonitor should not call cancel() when fingerprint auth fails. The life cycle will continue until an actual error occurs or the maximum number of retries is reached. Fixes bug 22562277 Change-Id: I36291d025de9c049cc7f7924f692c8c21349bb7b
* | | | Merge changes from topic 'fix-media-notifications' into mnc-devDaniel Sandler2015-07-301-7/+17
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | * changes: Fully support Icons in Notification actions. Fix media notification action icons.
| * | | Fix media notification action icons.Dan Sandler2015-07-291-7/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In addition to cleaning up some bare references to the icon slot, we now apply updates to notification RemoteViews in the context of the supplying app's package. This ensures we can find the drawables inside any Icon objects that were constructed without a proper package name, such as is the case with Actions (because the builder and constructor are Context-free and so don't know the package name). This CL also makes clear what was previously only implied: Non-resource action icons are not actually supported yet since they can't be pushed to TextView compound drawables using today's RemoteViews APIs. That will require an API change. Bug: 22600607 Change-Id: Ie6b88aed36e4db05be35f843ea3bc1898d4a5c96
* | | | Merge "Fix touch target for settings icon" into mnc-devJason Monk2015-07-301-7/+7
|\ \ \ \
| * | | | Fix touch target for settings iconJason Monk2015-07-291-7/+7
| | |_|/ | |/| | | | | | | | | | | | | | Bug: 22808656 Change-Id: I92b77b30bfeadc80d060dab67a51d5fcd96268af
* | | | Fix state weirdness in the panelJorim Jaggi2015-07-301-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When QS was open while the we started with expansion, we immediately notified about expansion finsihed again, which led to all kinds of weird states. The change that introduced these bugs was to fix another bug in which onExpandingFinished was not call. Make sure to call in exactly that case and no other case to not risk regressions. Bug: 22806817 Bug: 22807359 Bug: 22807372 Change-Id: Id7daf37ef4a772f724971bf79c61084ff4279f31
* | | | Merge "Bug: 21589105 Rescope WRITE_SETTINGS permission (framework services ↵Billy Lau2015-07-291-40/+8
|\ \ \ \ | | | | | | | | | | | | | | | perm check changes)" into mnc-dev
| * | | | Bug: 21589105 Rescope WRITE_SETTINGS permission (framework services perm checkBilly Lau2015-07-291-40/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes) AppOpsManager: Changed the default operating mode for WRITE_SETTINGS to MODE_DEFAULT from MODE_ALLOWED. packages/SettingsProvider: We no longer do static permission checks for WRITE_SETTINGS in early checks and defer that to app op when MODE_DEFAULT is returned. For some operations, checking against WRITE_SECURE_SETTINGS is sufficient. ActivityManagerService & PowerManagerService: Incorporated app op checks and handled the MODE_DEFAULT case. provider/Settings: Added helper function to do checks on whether app ops protected operations can be performed by a caller. This includes checks for WRITE_SETTINGS and SYSTEM_ALERT_WINDOW. Also added a public API (with javadocs) for apps to query if they can modify system settings. Changed the javadocs description for ACTION_MANAGE_WRITE_SETTINGS and ACTION_MANAGE_OVERLAY_PERMISSION. Added public API (with javadocs) for apps to query whether they can draw overlays or not, and also javadocs description on how to use that check. Change-Id: I7b651fe8af836c2074defdbd6acfec3f32acdbe9
* | | | | Accessibility: Read the time correctly in quick settings.Dan Sandler2015-07-292-1/+4
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is that, for 12-hour locales, we cut the "a" part of the time format out to show it in a separate TextView so it can be animated independently of the actual time. Unfortunately, while TTS is smart enough to pronounce "1:15 AM" as /wʌn fɪftin eɪ ɛm/, "AM" on its own looks like the English word "am" and is pronounced /æm/. To fix this, a TextClock must be able to accept separate formats for its content description than its presentation. With this capability we can place the complete 12-hour time format (including am/pm) in one of the views and suppress the other one, so that the utterance creates an identical experience to visual inspection: "1:15 AM" for all users. Bug: 21718000 Change-Id: Ic9920d71ae4d4ad41ba86d7bd96f9a19b07e2108
* | | | Merge "Fix pattern lock for accessibility" into mnc-devAdrian Roos2015-07-292-4/+1
|\ \ \ \
| * | | | Fix pattern lock for accessibilityAdrian Roos2015-07-292-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - remove the content description in Keyguard - only show virtual views when pattern is in progress - add a content description when the pattern is not in progress Bug: 22646748 Change-Id: Id32a37c4c74c82b547cee8861b2856fa0a08c41c
* | | | | Import translations. DO NOT MERGEGeoff Mendal2015-07-2978-81/+1051
| |/ / / |/| | | | | | | | | | | | | | | Change-Id: Ic4e540e08175014515a7556425c751de60955005 Auto-generated-cl: translation import
* | | | Merge "Resource for setting default NFC payment component." into mnc-devMartijn Coenen2015-07-292-1/+21
|\ \ \ \
| * | | | Resource for setting default NFC payment component.Martijn Coenen2015-07-272-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | Bug: 22756856 Change-Id: If97e0faead995fb95893a128c1890b61bbe86ce5
* | | | | Merge "Add sizes to SysUI tests" into mnc-devJason Monk2015-07-295-0/+10
|\ \ \ \ \
| * | | | | Add sizes to SysUI testsJason Monk2015-07-285-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I27e4a60e2658d3a5db32cdeb73bd0a031865ce86
* | | | | | Animation for touch, wake and unlockJorim Jaggi2015-07-2817-123/+321
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add callback to inform SysUI when the screen has been unblocked and turned on. - Cleanup inconsistent messaging about device interactive/screen on and off. - Add callbacks to inform SysUI about screen states - Implement a quick fade for the scrim after touch, wake, and unlock. First, start with a black scrim on top of everything, and then fade it out. - Make sure we play the normal unlock animation when device is pulsing - Override navigation bar animations for touch, wake and unlock: Fade in the same manner as the scrim. Bug: 22571198 Bug: 21855614 Change-Id: I8ff08d72cced1e0f03c78d71ff710d8a4f6b848c
* | | | | | Merge "Add filter for personal apps that are not disabled until first use" ↵Zach Johnson2015-07-281-0/+15
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | into mnc-dev
| * | | | | | Add filter for personal apps that are not disabled until first useZach Johnson2015-07-241-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Needed for the battery settings UI. b/22667081 Change-Id: I25ed5c1866dc3027e450c7ce9031de5def4f839a
* | | | | | | Merge "Fix network name not showing in QS sometimes" into mnc-devJason Monk2015-07-281-1/+2
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | Fix network name not showing in QS sometimesJason Monk2015-07-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only set the network name from service state if we are sure we a value for it. Bug: 22212693 Change-Id: I0811e8fe4682180d9187c42362bc40ab19922f2c
* | | | | | | Merge "Allow assist gesture when notification shade is expanded" into mnc-devJorim Jaggi2015-07-281-3/+1
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | |
| * | | | | | Allow assist gesture when notification shade is expandedJorim Jaggi2015-07-241-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 22669852 Change-Id: Icf7cf981ca9b6cd5547b62fb4ae97f13f1033395
* | | | | | | Merge "Fix QS switch accessibility problem" into mnc-devJason Monk2015-07-271-1/+3
|\ \ \ \ \ \ \
| * | | | | | | Fix QS switch accessibility problemJason Monk2015-07-271-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set the switch state so it can be read back correctly. Bug: 22710906 Change-Id: I2bcba96e53813118eb2be8dcb7e0b7d547767550
* | | | | | | | Merge "Pass correct extras to the custom print options activity" into mnc-devSvetoslav Ganov2015-07-271-1/+1
|\ \ \ \ \ \ \ \
| * | | | | | | | Pass correct extras to the custom print options activitySvet Ganov2015-07-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug:22734138 Change-Id: Iea1bc32c3e863072b2021b823bef2cefa54fa540
* | | | | | | | | Merge "Move PIN/Pattern appear animation to RenderThread (1/2)" into mnc-devJorim Jaggi2015-07-274-59/+97
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Move PIN/Pattern appear animation to RenderThread (1/2)Jorim Jaggi2015-07-224-59/+97
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 22205322 Change-Id: I253f20a397ab89cb78254338a0254619232d7300
* | | | | | | | | Merge "decide interruptions based on current data, not previous data." into ↵Chris Wren2015-07-271-2/+5
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | mnc-dev
| * | | | | | | | decide interruptions based on current data, not previous data.Chris Wren2015-07-171-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shouldInterrupt() now takes an optional StatusBarNotification object that will be used instead of the one on the entry. Bug:22462619 Change-Id: I5a1d9205b22ad733d5bc582693edad26518e1959
* | | | | | | | | Merge "Change to connectivitycheck.gstatic.com" into mnc-devErik Kline2015-07-271-1/+1
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | |
| * | | | | | | | Change to connectivitycheck.gstatic.comErik Kline2015-07-201-1/+1
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 18869302 Bug: 22368233 Change-Id: Iaecb59e4ef13a0fa82a0a4a920689804d24044c8
* | | | | | | | Merge "Fixed wake to unlock when the device has never been unlocked" into ↵Selim Cinek2015-07-251-2/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | mnc-dev
| * | | | | | | | Fixed wake to unlock when the device has never been unlockedSelim Cinek2015-07-241-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the fingerprint could still unlock the device when waking up with the fingerprint sensor, since we were not checking if it is allowed. Bug: 22622999 Change-Id: I039a4e0701c1f161f227cf6f1d25e8147548db47
* | | | | | | | | Merge "Adapted the behavior when unlocking with fingerprint is not allowed" ↵Selim Cinek2015-07-256-8/+46
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / | | | | | | | | / | |_|_|_|_|_|_|/ |/| | | | | | | into mnc-dev
| * | | | | | | Adapted the behavior when unlocking with fingerprint is not allowedSelim Cinek2015-07-236-8/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We now keep the fingerprint running and switch to the bouncer when the user successfully authenticated. Bug: 21618072 Change-Id: If00061cb3914afd4d7a7d75964594484c792a890
* | | | | | | | am a65de4fd: am b2f8c716: am 50ed152a: am 7f63ef38: am 9b6a6099: Prevent ↵Adrian Roos2015-07-241-0/+1
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | insanely long passwords from crashing SystemUI * commit 'a65de4fde99c84ae7c7cab242e8e1e46ee6c0a5d': Prevent insanely long passwords from crashing SystemUI
| * | | | | | | am b2f8c716: am 50ed152a: am 7f63ef38: am 9b6a6099: Prevent insanely long ↵Adrian Roos2015-07-241-0/+1
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | passwords from crashing SystemUI * commit 'b2f8c716e8d2cf575c690b5a360c4efdd9f06bc8': Prevent insanely long passwords from crashing SystemUI
| | * \ \ \ \ \ \ am 50ed152a: am 7f63ef38: am 9b6a6099: Prevent insanely long passwords from ↵Adrian Roos2015-07-231-0/+1
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | crashing SystemUI * commit '50ed152ab646b00714947a9cf75e01e618b16c02': Prevent insanely long passwords from crashing SystemUI
| | | * \ \ \ \ \ \ am 7f63ef38: am 9b6a6099: Prevent insanely long passwords from crashing SystemUIAdrian Roos2015-07-231-0/+1
| | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '7f63ef380ff8c95ea43edd832a7b986ad362e7cf': Prevent insanely long passwords from crashing SystemUI
| | | | * \ \ \ \ \ \ am 9b6a6099: Prevent insanely long passwords from crashing SystemUIAdrian Roos2015-07-231-0/+1
| | | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '9b6a60991453136819a6feeca404e1102e78f735': Prevent insanely long passwords from crashing SystemUI
| | | | | * | | | | | | Prevent insanely long passwords from crashing SystemUIAdrian Roos2015-07-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 22214934 Change-Id: I32e238e53ac4b6dd0ae6de226b98894c495b256f