summaryrefslogtreecommitdiffstats
path: root/api/system-current.txt
Commit message (Collapse)AuthorAgeFilesLines
...
| * Bug: 21589105 Rescope WRITE_SETTINGS and SYSTEM_ALERT_WINDOW permissionBilly Lau2015-07-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Raised the protection level of WRITE_SETTINGS permission to appop and also allowed backwards compatibility with pre23 flag. Also made sure that this permission is not added as RuntimePermission in DefaultPermissionGrantPolicy as that breaks a lot of gmscore stuff. Introduced new action to manage write system settings as a new API and renamed the string that describes the managing of overlay permission. Change-Id: Ifd25a6ddc06de68ee37015cb9fb23452e4ef10f4
* | Revert "Revert "Security: AccountChooser shouldn't auto reveal accounts.""Carlos Valdivia2015-07-101-1/+2
| | | | | | | | | | | | | | | | Fixes api stuff. This reverts commit f2d248db8078e716b809e0a17cacdea5c5609bd5. Change-Id: I75c05a17ebde4f245e1f3e0cc22e622d06534c4b
* | Merge "Add android.net.CaptivePortal class for captive-portal-handling-app ↵Paul Jensen2015-07-101-3/+9
|\ \ | | | | | | | | | callbacks" into mnc-dev
| * | Add android.net.CaptivePortal class for captive-portal-handling-app callbacksPaul Jensen2015-07-091-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | This new class replaces the awkward string token and ConnectivityManager APIs used by apps handling captive portals. Bug:21343774 Change-Id: I1a2c69edb17322715bf8422bb4216b0ea60bfd59
* | | Merge "Revert "Security: AccountChooser shouldn't auto reveal accounts."" ↵Bart Sears2015-07-101-2/+1
|\ \ \ | | | | | | | | | | | | into mnc-dev
| * | | Revert "Security: AccountChooser shouldn't auto reveal accounts."Baligh Uddin2015-07-101-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit c3b3f46d5fcbd89deeb557556e5a695c3e5349a1. Change-Id: I6d156e1ad82c052606f76644fe6085f14e82a734
* | | | Merge "Camera2: Reorganize high-speed recording API slightly" into mnc-devEino-Ville Talvala2015-07-101-2/+5
|\ \ \ \
| * | | | Camera2: Reorganize high-speed recording API slightlyEino-Ville Talvala2015-07-101-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Split off distinct high speed capture session class from base capture session - Move createHighSpeedRequestList to CameraConstrainedHighSpeedCaptureSession Bug: 21664295 Change-Id: I67d705fdeee1eaa6e5e3e1416771d5d0df642843
* | | | | Merge "Security: AccountChooser shouldn't auto reveal accounts." into mnc-devCarlos Valdivia2015-07-101-1/+2
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Security: AccountChooser shouldn't auto reveal accounts.Carlos Valdivia2015-07-091-1/+2
| | | | | | | | | | | | | | | | | | | | Bug: 9739125 Change-Id: Ib9032271def423aaafdab2505afaf6b1d3fcad06
* | | | Merge "Add an API for apps to query if a permisison is denied by policy." ↵Svet Ganov2015-07-101-0/+2
|\ \ \ \ | |/ / / |/| | | | | | | into mnc-dev
| * | | Add an API for apps to query if a permisison is denied by policy.Svet Ganov2015-07-081-0/+2
| | |/ | |/| | | | | | | | | | | | | bug:22177216 Change-Id: I32227f55097fae997f33743fd1eee06cb18f47f1
* | | Fix issue #22328792: Fix scalability issues in AssistStructureDianne Hackborn2015-07-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We can now stream the AssistStructure across processes, avoiding IPC size limitations for large structures. There is also a new API that gets called on the VoiceInteractionSession if there is a failure retrieving the assist data. Also fix issue #22351981: Runtime restart due to ANR in system server, getting rid of a deadlock. And also tweak object lifecycles to try to avoid keeping around in an app the previous AssistStructure after we request a new one. Change-Id: Ifb136a0d31a14e56a8db6b90768d9fc65557a17f
* | | Remove "final" qualifier from AuthenticationResultJim Miller2015-07-091-1/+1
|/ / | | | | | | | | | | | | | | | | This allows mock implementations to be created for testing purposes. Fixes bug 22362080 Change-Id: I5ff002c077d22b1338f2f4e394ad19827bb2ae9c
* | Merge "audio: add definitions for devices connected over IP" into mnc-devEric Laurent2015-07-081-0/+1
|\ \
| * | audio: add definitions for devices connected over IPEric Laurent2015-07-061-0/+1
| | | | | | | | | | | | | | | | | | Bug: 22068684. Change-Id: I0411679d2852135d4af3016844ced74f7718fa0d
* | | Add new "preinstalled" permission flag.Dianne Hackborn2015-07-071-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows you to specify that a permission can be granted to any pre-installed system app (not just privileged ones). And as long as I am doing this, clean up the old "system" permission flag, renaming it to "privileged" which is what it really is today, deprecating the old names. And switch the platform's permission declarations to use the new name. Change-Id: Iabf484746af232144786851ec7fe90e3de9dddb2
* | | Merge "Implement better handling of text in assist." into mnc-devDianne Hackborn2015-07-071-0/+3
|\ \ \
| * | | Implement better handling of text in assist.Dianne Hackborn2015-07-071-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TextView is now much smarter about the text it reports, limiting it to what is visible (plus a bit more). Also add a facility for it to report where the lines of text are, both as offsets in the text string and their baselines on screen. Part of fixing issue #22328792: Fix scalability issues in AssistStructure Change-Id: Idddb8c3a3331355f381e2d4af06d520fe7c7ce8e
* | | | Merge "Grant installer and verifier install permissions robustly" into mnc-devSvetoslav2015-07-071-1/+3
|\ \ \ \
| * | | | Grant installer and verifier install permissions robustlySvetoslav2015-07-071-1/+3
| |/ / / | | | | | | | | | | | | | | | | | | | | bug:22248271 Change-Id: I3a47ae9a112ba7d88b421fcb5f9651d1168ba7a5
* | | | Merge "Camera: Add ZERO_SHUTTER_LAG modes to noise reduction and edge ↵Eino-Ville Talvala2015-07-071-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | enhancement" into mnc-dev
| * | | | Camera: Add ZERO_SHUTTER_LAG modes to noise reduction and edge enhancementEino-Ville Talvala2015-07-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This mode splits processing quality based on stream resolution, to enable ZSL operation where low-resolution (preview/recording) streams require more processing since they are immediately user-visible, while the high-resolution intermediate ZSL stream should have minimal/no processing since it will be reprocessed into final quality when necessary Bug: 22266686 Change-Id: Ib41102b66b07d61a099f021f8c6251f28c62686f
* | | | | Merge "Report specific exception type on decrypt with invalid session" into ↵Jeff Tinker2015-07-071-0/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | mnc-dev
| * | | | | Report specific exception type on decrypt with invalid sessionJeff Tinker2015-07-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug: 22235465 Change-Id: Ic1e1a86529d4f2246b9768799aacde5cd1070d04
* | | | | | Revert "Bug: 21589105 Rescope WRITE_SETTINGS and SYSTEM_ALERT_WINDOW permission"Ian Pedowitz2015-07-071-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit d6b404c72da7e2475508c7d5948494b2e9b1a262. This CL seems to have broken the build, causing GMSCore to continuously crash. Bug: 22313634 Bug: 22312938 Bug: 22314605 Bug: 22308392 Bug: 22307889
* | | | | | Merge "Add WebView permission MIDI sysex" into mnc-devRichard Coles2015-07-071-0/+1
|\ \ \ \ \ \
| * | | | | | Add WebView permission MIDI sysexTao Bai2015-06-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I0d27e8ca48ee35b02dddc5d85ecfebfdaa3ec8cb
* | | | | | | Merge "Final resource IDs." into mnc-devIan Pedowitz2015-07-071-58/+32
|\ \ \ \ \ \ \
| * | | | | | | Final resource IDs.Dianne Hackborn2015-07-061-58/+32
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | Change-Id: I6200a013375f1b3e196b6426a6c925f4e9dfe4b1
* | | | | | | Merge "Bug: 21589105 Rescope WRITE_SETTINGS and SYSTEM_ALERT_WINDOW ↵Billy Lau2015-07-071-1/+2
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | | | | | | | | permission" into mnc-dev
| * | | | | | Bug: 21589105 Rescope WRITE_SETTINGS and SYSTEM_ALERT_WINDOW permissionBilly Lau2015-07-071-1/+2
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Raised the protection level of WRITE_SETTINGS permission to appop and also allowed backwards compatibility with pre23 flag. Introduced new action to manage write system settings as a new API and renamed the string that describes the managing of overlay permission. Change-Id: I939a95b9a8b1ae75bf67aa6d8190c92a8d2001d3
* | | | | | Merge "Unhide signal strength constants used by getLevel." into mnc-devCasey Ho2015-07-061-0/+5
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | Unhide signal strength constants used by getLevel.Casey Ho2015-06-221-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 22008966 Change-Id: I0c1dc993cbf33a7109d8a4e329b05a897df6ea1b
* | | | | | Merge "Minor doc fixes for VoiceInteractor." into mnc-devBarnaby James2015-07-061-5/+0
|\ \ \ \ \ \
| * | | | | | Minor doc fixes for VoiceInteractor.Barnaby James2015-06-301-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Minor documentation fixes. Make some @deprecated APIs @hidden. Change-Id: I6bb3b6ab3a2518899098ac9f920386eeef12f635
* | | | | | | Show basic feature warning for default granted permissionsSvet Ganov2015-07-031-5/+0
| |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug:22174223 Change-Id: Ie8209e1f678ac459893151b5125e86eb5025aad8
* | | | | | Merge "Teach receivers, activities, providers, and services app ops." into ↵Svet Ganov2015-07-011-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | mnc-dev
| * | | | | | Teach receivers, activities, providers, and services app ops.Svet Ganov2015-07-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Perform app op check in addition to the permisison check for all four paltform components - activities, content providers, broadcast receivers, services - if they are guarded by a permssion that has an associated app op. This ensures that legacy apps will behave correctly if the permission of the caller has been revoked, i.e. the app op for that permission was disabled. bug:22199666 Change-Id: Ia22d1c38d58b3cd6aabdc655cb7c7bddd85da7a2
* | | | | | | Merge "Fix issue #20672970: Notifications are not dismissed on hot word ↵Dianne Hackborn2015-07-011-0/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | detection" into mnc-dev
| * | | | | | | Fix issue #20672970: Notifications are not dismissed on hot word detectionDianne Hackborn2015-07-011-0/+1
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new VoiceInteractionSession.closeSystemDialogs() API that closes everything except the session itself. Change-Id: If45f1e120d8ca095b6c8055b6485acb5e710820e
* | | | | | | Merge "Work on issue #21589105: Scope WRITE_SETTINGS and ↵Dianne Hackborn2015-07-011-0/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | SYSTEM_ALERT_WINDOW..." into mnc-dev
| * | | | | | | Work on issue #21589105: Scope WRITE_SETTINGS and SYSTEM_ALERT_WINDOW...Dianne Hackborn2015-07-011-0/+1
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...to an explicit toggle to enable in Settings Add a new permission flag, saying the permission can be automatically granted to pre-api-23 apps. Apply this to SYSTEM_ALERT_WINDOW. Change-Id: I24a0ceabe7e9f5e458a864d30eda2696ad14a699
* | | | | | | Merge "More API review feedback" into mnc-devVinit Deshpande2015-07-011-4/+1
|\ \ \ \ \ \ \
| * | | | | | | More API review feedbackVinit Deshpande2015-06-301-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ScanResult now hides all flags and their values, only methods are public; and converted roaming consortium to an array of longs instead of Longs. Bug: 22179306 Change-Id: I644110dbddd5fa7a7109ac16051845fcc4c4e9d1
* | | | | | | | Merge "Changes to Data Injection mode APIs" into mnc-devAravind Akella2015-07-011-1/+1
|\ \ \ \ \ \ \ \
| * | | | | | | | Changes to Data Injection mode APIsAravind Akella2015-06-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Id55eaf03656d2d55df7f38d4cac643d97354fe9b
* | | | | | | | | Merge "Add ConnectivityManager.unregisterNetworkCallback(PendingIntent) API" ↵Paul Jensen2015-07-011-0/+1
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | into mnc-dev
| * | | | | | | | Add ConnectivityManager.unregisterNetworkCallback(PendingIntent) APIPaul Jensen2015-06-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This better pairs up with registerNetworkCallback(NetworkRequest, PendingIntent). Bug:22175708 Change-Id: I336df3f48a0b814f1cbeba6d00afc4e6cc536483
* | | | | | | | | Merge "Remove the empty accounts group and not needed storage resources." ↵Svet Ganov2015-07-011-1/+0
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | into mnc-dev