summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
AgeCommit message (Collapse)Author
2014-09-15Use the BROADCAST_STICKY permissionEvan Charlton
In order to be able to send sticky broadcasts (needed for InCallUI visibility), require the BROADCAST_STICKY permission. Bug: 16988478 Change-Id: I7805071ede8c1dd82d446e868ab577d9c9c1f8b8
2014-09-12Renaming Telecomm to Telecom.Tyler Gunn
- 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: I44d6d6546cac53232e4e2be0ebe0391d02411309
2014-09-04Merge "Clean up activity/application labels" into lmp-devJay Shrauner
2014-09-03Remove vcard supportJay Shrauner
Vcard support was left in both Dialer and Contacts as a legacy from splitting the two apps apart. Leave in Contacts and remove from Dialer. Bug:17357579 Change-Id: I536960c9882a30097e3be6976db23042d0f5e0ea
2014-09-03Clean up activity/application labelsJay Shrauner
Bug:17357577 Change-Id: Ibaa4251665e46cf29d36190670042522da9baeaf
2014-08-22Defaulting InCall UI to portrait.Tyler Gunn
If video APIs are in use there is code to allow orientation switching. Since these APIs are not in use now default to locked portrait orientation. Bug: 17188135 Change-Id: If31edc02607aa8694f4058f244f654d74e629b70
2014-08-18Exposing in-call API to other implementing classes. (3/4)Tyler Gunn
Adding "CONTROL_INCALL_EXPERIENCE" permission to in-call UI. Bug: 16133960 Bug: 17007163 Change-Id: I96f590766599ae554cf8046c80f184eda080d264
2014-07-29Support for landscape InCall UI during video calls.Tyler Gunn
Unlocking screen orientation as it will programatically locked to Portrait for voice calls and unlocked for video calls. Bug: 16012946 Change-Id: I579e62f696c81b6336c1aa79883371db9ea660e8
2014-07-25Switch from ACTION_CALL_PRIVILEGED TO ACTION_CALL (1/5)Yorke Lee
Bug: 6948882 Change-Id: I1f90c9f3f33d875482958d5f565629160ce2177e
2014-07-25Add preview layout for lockscreen phone affordanceJorim Jaggi
With the new interaction to launch the phone from the lockscreen, Dialer needs to provide a static layout which looks as close as possible to the screen after Dialer is fully loaded. Bug: 15126905 Change-Id: Ide1a54833ed00a9e8854408d7cb872d33633b6e5
2014-07-18Rename voicemail permissionsYorke Lee
Rename READ_ALL_VOICEMAIL to READ_VOICEMAIL, and MANAGE_VOICEMAIL to WRITE_VOICEMAIL Bug: 16400686 Change-Id: Id745be33865d622616ce7423af19c46bd1c1f9ce
2014-07-15Merge "Make ContactPreferences use SharedPreferences instead of System ↵Yorke Lee
settings (5/5)" into lmp-dev
2014-07-15Make ContactPreferences use SharedPreferences instead of System settings (5/5)Yorke Lee
* Move constants that originally lived in the framework into ContactsCommon * Use SharedPreferences instead of System settings to persist preferences * Use a SharedPreferenceListener to monitor changes instead of a content observer on system settings * Move DisplayOrderPreference and SortOrderPreference into ContactsCommon so that it can be used by Dialer * Create base DialerSettingsActivity in Dialer, and make GoogleDialerSettingsActivity extend it Bug: 16153186 Change-Id: I27befcc3b038038830f72092b55a6fc8a6f85674
2014-07-15Fixing Dialer InCallUI to portrait.Sai Cheemalapati
InCallUI now fixed to portrait orientation. Bug: 15985084 Change-Id: I0a61a5c3fef6ab334b4ca9b7b0a4f24df1b37dbd
2014-07-09Merge "Add manage voicemail permission (4/4)"Yorke Lee
2014-07-07Add in-app CountryDetector (3/4)Yorke Lee
Add the necessary broadcast receivers and IntentServices to Dialer Bug: 15593973 Change-Id: I6f34d63d8727cb546fa148d25208a6f6c5d2fb14
2014-07-03Remove ICallHandlerService reference from DialerSailesh Nepal
Change-Id: Ifbaaba0d3226d03ea364cf1df76da3abebb9f5dc
2014-06-27Add manage voicemail permission (4/4)Yorke Lee
Use new permissions in GoogleDialer Bug: 6948882 e commit message for your changes. Lines starting Change-Id: Ib03fca5891672a39bd7db18cc04a7d28482c72d1
2014-06-26Use config.xml to define default incall ui package and class. (1/2)Santos Cordon
Bug: 15674860 Change-Id: Id4ca1e0acbbe7c29cbac42342e24de1c4c44af93
2014-06-25Remove reboot permissionJay Shrauner
Remove unused REBOOT permission. Bug: Change-Id: Ic0d8b290b1eb87b78dfa4516b4763d0b53fa92f2
2014-06-25Dialer should honor orientation lock.Sai Cheemalapati
Dialer now honors the orientation lock. Will remain in portrait mode if device is locked to portrait. Bug: 15872173 Change-Id: I5068ed392ad7e55663617bf60ecfbda7b78c06b6
2014-06-17Enabling landscape in AOSP Dialer.Sai Cheemalapati
Dialer now orientates based on sensor. No longer fixed to portrait mode. Change-Id: Ifb6e4e68f384501f6c8351c146906b323e0f1e8d
2014-04-30Use EditText for search in ActionBarYorke Lee
SearchView is too limited in terms of customizability for the kind of UI styling we are trying to do. All we really need is a space to enter text into, so use a EditText embedded in a custom ActionBar view instead. Bug: 13932490 Change-Id: I7081684c46b29b416dd6d0e5fcff249ee6f00405
2014-04-23Hide actionbar title text in activity previewYorke Lee
Bug: 14258061 Change-Id: Icb016476162362adf2476f3cba05672aa4f12a18
2014-04-18Remove AllContactsActivityYorke Lee
Bug: 14157588 Change-Id: I48342e9a5f78173f84967e3330add8fd87442bea
2014-04-14Add actionbar to DialerYorke Lee
Initial changes to replace the fake actionbar affordances in Dialer with an actual actionBar. This puts the dialer in an intermediate hybrid state where we are now using the system actionbar for search, but the searchview is not yet themed to look like our old search bar, so this is definitely still WIP UI. This CL retains the fake action bar at the bottom of the screen to continue allowing quick access to call history while other changes are underway, but replaces the searchview and the overflow menu with framework provided actionbar functionality. Other related changes: * The searchview (in the top actionbar) is hidden when scrolling to devote the entire screen area to the speeddial list https://folio.googleplex.com/phone/L/0407/#/03.png * Functionality provided by the fake overflow menu has been moved to the real actionbar overflow menu * Various modifications to child fragments/listviews to take into account the existence of an actionbar * Cleaned up unneeded styles and related-dead code Bug: 13933082 Change-Id: Ifd855bd67af7bf2d2a403ef9556ade54e8d57ee6
2014-03-21Make Dialer a core appJay Shrauner
Set coreApp="true" in AndroidManifest so emergency calls work from lock screen on encrypted phones. Bug:13586583 Change-Id: I1065743cae4c2090351226de193751606fde1b51
2014-03-13Changed dialer launch activity style to use a 0dp height actionbar.Tyler Gunn
This prevents the user from seeing a blue "Phone" actionbar during loading. Bug: 13438027 Change-Id: I3d46778a63df15fb9d44bd281e2ef8b20602f677
2013-11-07Add read_profile permission to DialerYorke Lee
Dialer needs the read_profile permission for the ContactLoader to work in certain codepaths within the ContactLoader Bug: 11574191 Change-Id: Ia4986d339483fe59ee0329ef1a485276500d1e94
2013-10-08Merge "Do not use implicit intent to up nav to call log." into klp-devChiao Cheng
2013-10-08Do not use implicit intent to up nav to call log.Chiao Cheng
Implemented according to developer docs: http://developer.android.com/training/implementing-navigation/ancestral.html Bug: 11116403 Change-Id: I02dd4900fbda921ddeaaa2a1ac8fa780152dc6ec
2013-10-07Adds STOP_APP_SWITCHES permission.Christine Chen
- Required to avoid delay after user hits the home button. Bug: 11050553 Change-Id: Ib8e900d988ed6b8d826e5046756322fafe0f29be
2013-09-16Add BIND_CALL_SERVICE permission to DialerYorke Lee
Bug: 10605336 Change-Id: I1cfaaa0b34f981c259e09422ba973a54349c6ffb
2013-09-10Fix actionbar overlay in all contacts activityYorke Lee
Bug: 10514458 Change-Id: I6a1c77c23796a6f64be5f9eb73c4d1c0ab4561c9
2013-09-10Fix copy and paste menuYorke Lee
Bug: 10514458 Change-Id: Ic150bd3b3905eaa99cb380add10123891d50447d
2013-09-04Changing incall ui label to the already translated "Phone"Santos Cordon
Change-Id: Ia6b9eb3df1f0f6db961478b5ff62a522b7937163
2013-09-04Combine InCallUI & Dialer (part 3)Santos Cordon
Merge InCallUI code into Dialer. Adds references to InCallUI code into the Android.mk file and copies AndroidManifest.xml entries over. bug:10605332 Change-Id: Ie889f914021fe59aaaf6ff0a4c971028f25b4cf7
2013-09-03Force Dialer to portrait modeYorke Lee
Bug: 10598253 Change-Id: I3874a170789188876b13223edb1dcb0173241158
2013-08-23Support Extended DirectoriesAlon Albert
Change-Id: I70abefa6448de31b2c525e22ce3ec1cdd7a67cce
2013-08-14Add outgoing call receiver to undemote a contactYorke Lee
Bug: 10292569 Change-Id: I377220822970d46c6706a636fbcc54f8eb2c8758
2013-08-09Extract ShowAllContactsFragment and add it to its own activityYorke Lee
Bug: 10244050 Change-Id: I9c815aecc3fe9f0db239129749fb5be3c73f51be
2013-08-07Drop BIND_DIRECTORY_SEARCH permissionJay Shrauner
Drop BIND_DIRECTORY_SEARCH permission. Bug: Change-Id: I9496aacbd302002b319fd04973dc8abaa4687779
2013-08-06Add GAL support to DialerJay Shrauner
Add BIND_DIRECTORY_SEARCH permission to manifest. Use new methods for GAL support. Change SmartDialing cursor and adapter to use PhoneNumberListAdapter projections directly. Bug: Change-Id: I5f8181cfeec7adab4865e680ebc85ba2b476fc39
2013-07-31Switch from old dialer to new dialerYorke Lee
Change-Id: I51351f252338eee4d0be5723beafc044786b801e
2013-07-29Allow Dialer to respond to dial and view call log intents.Yorke Lee
Change-Id: I5a67cf690be172e5d55a426f61e53e6b1bb7a935
2013-07-23Redlines for call history screen, as well as most recent call logYorke Lee
* Add and change background and layout for CallLogListItem * Create wrapper view for most recent call log item * Change actionbar background in Call History activity * Hide phone number in call log items * Add tab indicator drawables Change-Id: Ic86c3fac857971aba58ba3ac1d79ddebaf663da6
2013-07-22Style and layout changes to match redlinesYorke Lee
* Swapped out some icons with newly added assets. * Changed search view into edit text with accompanying close button so that it can be more easily styled. * Changed various background colors. * Tweaked padding values to match redlines * Removed margins from PhoneFavoriteRegularRowView and PhoneFavoriteTileView and instead use a standardized set of margins for all rows in PhoneFavoritesTileAdapter * Added bottom_border_background drawable to create a bordered background. * Remove PhoneFavoritesTileAdapter.ViewTypes.STARRED/STARRED_PHONE since they are no longer relevant Change-Id: I65dfd5adf6cfbcb2c9d283aef2bd10e5d2a82dc7
2013-07-16Initial commit of all new dialer activities, layouts and stylesYorke Lee
As far as possible, this change does not modify any behavior/look of the existing dialer. All modifications to classes/layouts/style attributes that would affect functionality of the old dialer are instead done in separate new files. Added new versions of all activities, fragments, layouts, menus and resources that have been rewritten or modified. The activities do not have intent filters yet in order to not interfere with the existing dialer. Added some new values in colors/styles/dimens for the newly added layouts. Added NewCallLogActivity to separate the CallLogFragment from DialtactsActivity. All call log and voicemail entries are now presented in a separate (New)CallLogActivity. IntentProvider.getCallDetailIntent now takes a cursor instead of an adapter for more flexibility. Add OnListFragmentScrolledListener interface for DialtactsActivity to receive callback when one of its children fragment is scrolled. Added slide in and slide out animations for DialpadFragment. Add slide up and hide animations for search view All menu options now show up in a PopupMenu in NewPhoneFavoriteFragment. Added call log adapter into NewPhoneFavoriteMergedAdapter. Rewrote layout of DialpadFragment to show up as a fragment partially overlaying the screen. Removed some unused code in DialpadFragment (smart dialing, menu handling) Add fragments and adapters for SmartDial. - Update Dialer database to support highlight masking and record contact data Uri, as well as photo uri - Add a fragment and adapter for smart dialing - Add SmartDialCursorLoader to load SmartDial results. - Typing in the dialpad now returns smart dialing results instead of regular search results QuickContactTiles for all sub-adapters of PhoneFavoriteMergedAdapter now use light theme instead of the the default dark theme. Removed all redundant call log filter and contacts to display filter code Moved Dialer specific UI list-related classes to the Dialer package Change-Id: I34885813e4fa79b69e29ac870a87a56d6f08a5e7
2013-05-23Create backup agent for the Dialer app.Christine Chen
- Currently only the active tab is being backed up. - More settings may be added later. Change-Id: Id66565029be751beae8b58d4cc054f8d2d16ceea
2013-04-05Fix for bug #8146846 Phone App should be mirrored for RTL languagesFabrice Di Meglio
- replace left/right properties with start/end ones (Dialer will never be unbundled) - add mirrored version of some drawables - update AndroidManifest Change-Id: Ia7f5b6ad13dd75fe42f1ee763dda5ab18e2d92c7
2013-02-13Removing un-necessary permissions for dialer.Chiao Cheng
Change-Id: Idb176ab4a7d24aa1d7a581c64e0dbbd27ee6c55b
2013-01-30Add missing ContactUpdateService in AndroidManifest.xmlYorke Lee
Bug: 8107290 Change-Id: I87a4127a99cbedd8e757cfc66cfe7f543c4e82eb
2012-12-04Moving vcard UI to ContactsCommon.Chiao Cheng
Moving all class in vcard directory in preparation to move ImportExportDialogFragment. Bug: 6993891 Change-Id: Ibf82b3b69a2ce81e78466fea5d2a88d180084bd1
2012-12-03Further clean-up of PhoneFavoriteFragment in Dialer app.Chiao Cheng
Moving dependencies of Dialer PhoneFavoriteFragment. Mostly filtering dependencies. Bug: 6993891 Change-Id: I1789580470dd753ffdcb141e5ab827c88369bb3d
2012-11-09Moving phone icon into Dialer app.Chiao Cheng
Also removed un-necessary taskAffinity definitions. Bug: 6993891 Change-Id: Id89bfecfe5cbc462964a43063f789e3ea1a62984
2012-10-29Adding missing menu activities to manifest.Chiao Cheng
The AccountFilterActivity and CustomContactListFilterActivity are needed by the "Contacts to display" menu option. Bug: 6993891 Change-Id: I07aefb345bd6a383017a32facbbc5508ff945073
2012-10-25Merge "Remove un-necessary sharedUserId from Dialer."Chiao Cheng
2012-10-24Remove un-necessary sharedUserId from Dialer.Chiao Cheng
Originally copied from Contacts but is not needed. Bug: 6993891 Change-Id: Ieec0dd124639f92cd6d0a57c638d7066f38c9d06
2012-10-23Move activity and service back to Contacts.Chiao Cheng
ViewNotificationService and NonPhoneActivity make more sense in contacts since they perform contact related operations. Bug: 6993891 Change-Id: Ifb11f26e8f1567ce391da1189f50b5ec79340f5d
2012-08-21Initial move of dialer features from contacts app.Chiao Cheng
Bug: 6993891 Change-Id: I758ce359ca7e87a1d184303822979318be171921