summaryrefslogtreecommitdiffstats
path: root/api
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Additional changes to SubscriptionManager API as per API council." ↵Wink Saville2014-11-221-17/+23
|\ | | | | | | into lmp-mr1-dev
| * Additional changes to SubscriptionManager API as per API council.Wink Saville2014-11-221-17/+23
| | | | | | | | | | bug: 17575308 Change-Id: Idd98aa46c15a9219ccf28091c62602ac8bf16c62
* | Merge "Camera: Add new capability flags as system features as well" into ↵Eino-Ville Talvala2014-11-221-0/+2
|\ \ | |/ |/| | | lmp-mr1-dev
| * Camera: Add new capability flags as system features as wellEino-Ville Talvala2014-11-201-0/+2
| | | | | | | | | | | | | | Also add all the L and L MR1 new system features to the uses-feature documentation. Bug: 18281970 Change-Id: I116ca3fd04cd90eb53cc696b6fa62488687e7740
* | Merge "Make default windows features configurable." into lmp-mr1-devBryce Lee2014-11-211-1/+2
|\ \
| * | Make default windows features configurable.Bryce Lee2014-11-211-1/+2
| | | | | | | | | | | | | | | Bug: 18434078 Change-Id: I0bafce1a201088a8681f4b9e43237e23b49296a2
* | | Merge "Fix issue #15828903: Intent.parseUri allows call to ↵Dianne Hackborn2014-11-211-0/+1
|\ \ \ | | | | | | | | | | | | FLAG_GRANT_*_URI_PERMISSION" into lmp-mr1-dev
| * | | Fix issue #15828903: Intent.parseUri allows call to FLAG_GRANT_*_URI_PERMISSIONDianne Hackborn2014-11-201-0/+1
| |/ / | | | | | | | | | | | | | | | You now need to set a flag if you want this unsafe behavior. Change-Id: I185e9a04e005e42a887c3d58a2818616790b060a
* | | Merge "Make DeviceDefault alert dialog themes public" into lmp-mr1-devAlan Viverette2014-11-211-0/+2
|\ \ \
| * | | Make DeviceDefault alert dialog themes publicAlan Viverette2014-11-201-0/+2
| | |/ | |/| | | | | | | | | | BUG: 18426645 Change-Id: Icd93dd4b153285e7636a59bec193b2fdf2d21da8
* | | Merge "Rename EXTRA_NETWORK ConnectivityManager constants." into lmp-mr1-devErik Kline2014-11-211-2/+2
|\ \ \ | |/ / |/| |
| * | Rename EXTRA_NETWORK ConnectivityManager constants.Erik Kline2014-11-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Per b/18414703: s/\<EXTRA_NETWORK_REQUEST_NETWORK\>/EXTRA_NETWORK/g s/\<EXTRA_NETWORK_REQUEST_NETWORK_REQUEST\>/EXTRA_NETWORK_REQUEST/g Additionally, associated string values updated to: android.net.extra.NETWORK android.net.extra.NETWORK_REQUEST Bug: 18414703 Change-Id: I7aeed2161829742affc666e835a97ce2c28356fe
* | | Merge "Update KeyguardManager.isDeviceLocked API" into lmp-mr1-devAdrian Roos2014-11-201-1/+1
|\ \ \
| * | | Update KeyguardManager.isDeviceLocked APIAdrian Roos2014-11-201-1/+1
| | | | | | | | | | | | | | | | | | | | Bug: 18414067 Change-Id: I0715714c2c9a122f578ec0c6f508faae12e6f752
* | | | Merge "Revert "Additional changes to SubscriptionManager API as per API ↵Wink Saville2014-11-201-16/+16
|\ \ \ \ | | | | | | | | | | | | | | | council."" into lmp-mr1-dev
| * | | | Revert "Additional changes to SubscriptionManager API as per API council."Wink Saville2014-11-201-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit baf21da1e17ef358632c078128d381b3be218a08. Change-Id: I73cbdfadf07ca3cf20b042781b62aafcc72b17d6
* | | | | Merge "Additional changes to SubscriptionManager API as per API council." ↵Wink Saville2014-11-201-16/+16
|\ \ \ \ \ | |/ / / / | | | | / | |_|_|/ |/| | | into lmp-mr1-dev
| * | | Additional changes to SubscriptionManager API as per API council.Wink Saville2014-11-191-16/+16
| | | | | | | | | | | | | | | | | | | | bug: 17575308 Change-Id: I7773965094510999bfce8fc6b2b31ba6ce496653
* | | | Merge "Carrierprivileges: Addressing API council suggestions." into lmp-mr1-devShishir Agrawal2014-11-201-5/+1
|\ \ \ \ | |_|_|/ |/| | |
| * | | Carrierprivileges: Addressing API council suggestions.Shishir Agrawal2014-11-181-5/+1
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - hasCarrierPrivileges - renamed to getCarrierPrivilegeStatus - setLine1NumberForDisplay should not be usable by apps that have MODIFY_PHONE_STATE - setVoiceMailNumber should not be usable by apps that have MODIFY_PHONE_STATE - setOperatorBrandOverride should not be usable by apps that have MODIFY_PHONE_STATE Not addressed: - setGlobalPreferredNetworkType() should not be usable by apps that have MODIFY_PHONE_STATE The underlying call is needed by system apps (OMADM) too. Bug: 18356155 Change-Id: Idc6468a0bd0b0c52b9de1d8446f98c90ac0b3238
* | | Merge "Fix seeking and scaled duration behavior" into lmp-mr1-devChet Haase2014-11-201-0/+1
|\ \ \
| * | | Fix seeking and scaled duration behaviorChet Haase2014-11-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The animation scaled was not being factored in early enough in the activity lifecycle. Also, setCurrentPlaytTime() was not accounting for the scaled duration correctly. Finally, added setCurrentFraction() as a more general-purpose seeking facility. Issue #18222006 Animator duration scale ignored in some situations Issue #17951668 add ability to seek fraction, not just time Change-Id: Idad401f5ff5026d7046c36eee09d78a4793215dc
* | | | Merge "Remove underline and search icon from ActionBar search view" into ↵Alan Viverette2014-11-191-0/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | lmp-mr1-dev
| * | | Remove underline and search icon from ActionBar search viewAlan Viverette2014-11-181-0/+1
| | |/ | |/| | | | | | | | | | BUG: 17396265 Change-Id: I751bc79538f1ea412192172035920e59351270f1
* | | Merge "Addressing API review issues for SmsManager (2/3)" into lmp-mr1-devYe Wen2014-11-181-3/+3
|\ \ \
| * | | Addressing API review issues for SmsManager (2/3)Ye Wen2014-11-171-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | b/18356155 Change-Id: I2941284c48db7734f1b056263e4b53790f665a1c
* | | | Merge "Rename the dont_disable_system_apps constant." into lmp-mr1-devSander Alewijnse2014-11-181-1/+1
|\ \ \ \ | |_|/ / |/| | |
| * | | Rename the dont_disable_system_apps constant.Sander Alewijnse2014-11-181-1/+1
| |/ / | | | | | | | | | | | | Bug:18414080 Change-Id: Ief9c6ac4346ab0588514f89a659fcb09d10d6574
* | | Merge "Add new API to set voicemail number." into lmp-mr1-devShishir Agrawal2014-11-171-0/+1
|\ \ \ | |_|/ |/| |
| * | Add new API to set voicemail number.Shishir Agrawal2014-11-121-0/+1
| | | | | | | | | | | | | | | | | | | | | The API is protected by system or carrier privilege. Bug: 17393589 Change-Id: I33f4a00b30e0f5d72e5d53553a187d974872eab6
* | | Camera2: Add BURST_CAPTURE capability flagEino-Ville Talvala2014-11-171-0/+1
| |/ |/| | | | | | | | | | | | | | | | | | | | | This capability (a subset of FULL) indicates that a camera device can capture high-rate (>= 20fps) bursts of images at full device resolution, in at least the YUV_420_888 format. It also guarantees that the synchronization latency for a device is relatively small, so that fixed-setting bursts can be captured quickly. Bug: 18281970 Change-Id: Ifc8fc43252a77097d804429d1c9f6fa71a95aa4f
* | Merge "camera2: Add READ_SETTINGS capability." into lmp-mr1-devRuben Brunk2014-11-151-0/+1
|\ \
| * | camera2: Add READ_SETTINGS capability.Ruben Brunk2014-11-131-0/+1
| | | | | | | | | | | | | | | Bug: 18281970 Change-Id: I28be92a85f0a843c690f9ff49263440cd871e40d
* | | Merge "Add extra to enable device admins to skip removal of system apps." ↵Sander Alewijnse2014-11-141-0/+1
|\ \ \ | | | | | | | | | | | | into lmp-mr1-dev
| * | | Add extra to enable device admins to skip removal of system apps.Sander Alewijnse2014-11-131-1/+2
| | | | | | | | | | | | | | | | | | | | Bug:17369849 Change-Id: Ibc1c0f480c436c7075725f79ffaaf92832c1154a
* | | | Merge "Add offset method to Outline" into lmp-mr1-devChris Craik2014-11-131-0/+1
|\ \ \ \
| * | | | Add offset method to OutlineChris Craik2014-11-121-0/+1
| | |/ / | |/| | | | | | | | | | | | | | | | | | Also clean up offset docs in Path Change-Id: Ieca02611d32acce726efba652ae1969340a55a76
* | | | Merge "new sms/mms carrier app API" into lmp-mr1-devAbhijith Shastry2014-11-131-0/+78
|\ \ \ \
| * | | | new sms/mms carrier app APICheuksan Wang2014-11-121-0/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BUG: 18005911 Change-Id: Ib961badc1ccac270f1244f8d971d9abec324b73f
* | | | | Merge "[RemoveAccount API]: Adding support for intent." into lmp-mr1-devSimranjit Singh Kohli2014-11-131-1/+3
|\ \ \ \ \
| * | | | | [RemoveAccount API]: Adding support for intent.Simranjit Singh Kohli2014-11-071-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding support for intent handling provided by authenticators. Bug: 18292092 Change-Id: I1e94422bc28e5fd54c454ee6542ff2d30f82849f
* | | | | | Merge "Update current.txt with the new extra" into lmp-mr1-devAlexandra Gherghina2014-11-131-0/+1
|\ \ \ \ \ \
| * | | | | | Update current.txt with the new extraAlexandra Gherghina2014-11-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17716971 Change-Id: Ice82394c681665aff96724faa2e8056656d2b1ab
* | | | | | | Merge "[WebView] Allow the WebView to be compiled against the system SDK." ↵Ignacio Solla2014-11-131-122/+130
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into lmp-mr1-dev
| * | | | | | | [WebView] Allow the WebView to be compiled against the system SDK.Ignacio Solla2014-11-121-122/+130
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | BUG:18152150 Change-Id: Ifd6dcac17663631058d895c61bb6e8018c5aeecc
* | | | | | | Make Message.setAsynchronous() public.Jeff Brown2014-11-111-0/+2
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are many cases in real world applications where it is desirable to continue processing messages on the Looper even when most other messages have been suspended by a synchronization barrier pending completion of the next drawing frame on vsync. Internally the framework is able to mark certain messages as being independent of these higher level synchronization invariants by flagging them as asynchronous. This change exposes the existing function and improves on the documentation so that it is clearer what is meant by asynchronous. Bug: 18283959 Change-Id: I775e4c95938123a364b21a9f2c39019bf37e1afd
* | | | | | Merge "Update SubscriptionManager API as per API council." into lmp-mr1-devWink Saville2014-11-121-16/+15
|\ \ \ \ \ \
| * | | | | | Update SubscriptionManager API as per API council.Wink Saville2014-11-111-16/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug: 17575308 Change-Id: Ib39a60e4f75981a466e9d606ec627756efad018d
* | | | | | | Merge "Fix Material styling in remaining dialogs and layouts" into lmp-mr1-devAlan Viverette2014-11-111-0/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Fix Material styling in remaining dialogs and layoutsAlan Viverette2014-11-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also updates existing row and dialog layouts to use preferred list item or dialog padding as appropriate, fixes incorrect activity themes, and updates ChooseAccountActivity variants for Material. BUG: 18314215 BUG: 18292562 Change-Id: I2fde4ba6db80d839104abdaa334a46ad1861600f