summaryrefslogtreecommitdiff
path: root/telecomm/java/android/telecom/TelecomManager.java
Commit message (Collapse)AuthorAgeFilesLines
...
* | | am c913c2de: Merge "Revert "Add API method to extract subscription ID from ↵Nancy Chen2014-10-171-44/+0
|\| | | | | | | | | | | | | | | | | | | | phone account (1/3)"" into lmp-sprout-dev * commit 'c913c2dec18519ae5b989f65b207c7b3fec2d0ef': Revert "Add API method to extract subscription ID from phone account (1/3)"
| * | Merge "Revert "Add API method to extract subscription ID from phone account ↵Nancy Chen2014-10-161-44/+0
| |\ \ | | | | | | | | | | | | (1/3)"" into lmp-sprout-dev
| | * | Revert "Add API method to extract subscription ID from phone account (1/3)"Nancy Chen2014-10-161-44/+0
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit b0cad32c3cadd0387f6dcd82aade629e6f2f6bee. Change-Id: I54b6373ba0fc7d1ecc64c6ceedc7b371c7017cd8
* | | | am 9faf13b4: Merge "Add API method to extract subscription ID from phone ↵Nancy Chen2014-10-151-0/+44
|\| | | | |_|/ |/| | | | | | | | | | | | | | account (1/3)" into lmp-sprout-dev * commit '9faf13b47467916897cf5c019a3a74df871b8f65': Add API method to extract subscription ID from phone account (1/3)
| * | Merge "Add API method to extract subscription ID from phone account (1/3)" ↵Nancy Chen2014-10-151-0/+44
| |\| | | | | | | | | | into lmp-sprout-dev
| | * Add API method to extract subscription ID from phone account (1/3)Nancy Chen2014-10-131-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since Telephony uses subscription ids and Telecom uses Phone Accounts, there should be an easy way to interface between the two. Since the value of the subscription id and "id" of the phone account should be the same in the case of a SIM phone account, we just need to check that the phone account in question is a SIM phone account and convert the string to a long. This lays in groundwork for the following bugs: Bug: 17925501 Bug: 17917937 Change-Id: I926e969b365d9e9878436302117e8786ec5513b8
* | | am 7e552595: am 4c334f3d: Merge "Add ability to add sim-initiated MO call to ↵Yorke Lee2014-10-071-0/+36
|\| | | | | | | | | | | | | | | | | | | | UI (2/4)" into lmp-dev * commit '7e552595bda0825787820e3d9bb58b5fad32cd01': Add ability to add sim-initiated MO call to UI (2/4)
| * | Add ability to add sim-initiated MO call to UI (2/4)Yorke Lee2014-10-061-0/+36
| |/ | | | | | | | | | | | | | | | | Add supporting (hidden) APIs to TelecomManager to add the ability to add a previous unknown call to Telecom Bug: 17787391 Change-Id: Ibdfaee81a55e11451c146751cf970980dccad435
* | am 25b85bcc: am 8f8bffa1: Merge "Add @SystemApi to missing TelecomManager ↵Evan Charlton2014-10-021-0/+3
|\| | | | | | | | | | | | | methods" into lmp-dev * commit '25b85bcc41ccdd912cba7b9b6462f177e85b3b08': Add @SystemApi to missing TelecomManager methods
| * Add @SystemApi to missing TelecomManager methodsEvan Charlton2014-10-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | A few methods (which should be exposed) were missing @SystemApi annotations. TelecomManager#addNewIncomingCall TelecomManager#registerPhoneAccount TelecomManager#unregisterPhoneAccount Bug: 17786491 Change-Id: Idf318cf6238668762c00ed0913a9c0ccd5bcb884
* | Revert "@hide ConnectionService APIs."Evan Charlton2014-09-241-13/+0
|/ | | | This reverts commit 86935c406e4a8bb0e2ad871b51009f3603df9e87.
* @hide ConnectionService APIs.Tyler Gunn2014-09-231-0/+13
| | | | | Bug: 17569532 Change-Id: I68f7237191bd6d7a1a00ba7bb4fd2f8e3d669e8f
* Replace get*PhoneAccounts* public API methods with new method (1/3)Nancy Chen2014-09-171-30/+45
| | | | | | | | | | Hide getCallCapablePhoneAccounts and getPhoneAccountsSupportingScheme because a third party app should not be able to see all phone accounts registered. Replace instead with getPhoneAccountsForPackage(Context) which will only return the phone accounts registered by a particular package. Bug: 17510811 Change-Id: I8465ef4f13b62fe83f51835cfffe1656298041a8
* Merge "Remove ability to enable/disable phoneaccounts (1/6)" into lmp-devNancy Chen2014-09-171-56/+20
|\
| * Remove ability to enable/disable phoneaccounts (1/6)Nancy Chen2014-09-161-56/+20
| | | | | | | | | | | | | | | | | | | | | | Enabling/disabling of phone accounts was only used for SIP accounts and is no longer necessary for the purpose it was put in. - Remove all references to enabling/disabling phone accounts + Rename getEnabledPhoneAccounts -> getCallCapablePhoneAccounts Bug: 17510811 Change-Id: Id805daae3cc698c75f5e747b6a6107ab0bd3afa0
* | No longer require READ_PHONE_STATE permission for getCallStateYorke Lee2014-09-151-4/+0
|/ | | | | Bug: 17510808 Change-Id: Id3bb5bf2fea9489bd613063aa946389e8ceb3104
* Pipe TelephonyManager.getCallState through TelecommManagerYorke Lee2014-09-141-1/+26
| | | | | | | | | | | | * Add TelecommManager.getCallState (hidden API) * Make TelephonyManager.getCallState call through to TelecommManager, to be consistent with TelephonyManager.ACTION_PHONE_STATE_CHANGED broadcasts for overall call state. Telephony continues to manage call states for individual subscriptions. Bug: 17378767 Change-Id: Ia5e8b21df801ed3af4f6e14c110a72c92f077f88
* Renaming Telecomm to Telecom.Tyler Gunn2014-09-121-0/+873
- Changing package from android.telecomm to android.telecom - Changing package from com.android.telecomm to com.android.server.telecomm. - Renaming TelecommManager to TelecomManager. Bug: 17364651 Change-Id: I192cb5d189f55db012ea72ee82ccc5aedbc21638