- 10 Mar, 2010 1 commit
-
-
Lixin Yue authored
This is to fix below issue: when an ongoing transfer is almost to complete, click the ongoing notification to launch TransferActivity, there will be possible crash due to NullPointerException. Root casue is: when TransferActivity onCreate() is called, the transfer is still ongoing, so mIsComplete is false; but when onCreate() call to updateProgressbar(), the transfer may change to complete, and then updateButton() will be called; In updateButton(), mAlert (which will be initialized in father class AlertActivity) still not intialized, which caused NullPointerException. Change-Id: Ibfe363f3822386a38b9b108e29f60ad6673f70f6
-
- 06 Mar, 2010 1 commit
-
-
Lixin Yue authored
-
- 04 Mar, 2010 2 commits
-
-
Lixin Yue authored
Add opp Transfer history to avoid cluster of notificatoins To reduce the cluster of Opp nofications, we introduce the concept of Opp transfer history. Only 2 notifications exist for finished opp transfers, one is for outbound transfers, and another is for inbound transfers. User can see all detailed items in corresponding screen when click the notification. Change-Id: Iffed353ea6b0d7c958c71fe8d3996937058ced30
-
Daisuke Miyakawa authored
Bug: 2485875
-
- 24 Feb, 2010 1 commit
-
-
Daisuke Miyakawa authored
-
- 12 Jan, 2010 1 commit
-
-
The Android Open Source Project authored
-
- 04 Jan, 2010 1 commit
-
-
Lixin Yue authored
In OppReceiver, the function mOppManager.startTransfer(remoteDevice), which is used to insert share records to DB, can be really a time-consuming operation in case of 300 or more objects sharing case. For onReceive() function in BroadcastReceiver, there are below specification: The function is normally called within the main thread of its process, so you should never perform long-running operations in it (there is a timeout of 10 seconds that the system allows before considering the receiver to be blocked and a candidate to be killed) Add handle to concurrent sending case In Gellary, user can multiple select files (say 50files), and share via bluetooth to device1, and then right away share via bluetooth to device2, and also can share to device3. In such extream case, we need ensure all share info are saved to db. Complete the TODO in OppManager Store application data to SharedPreferences and restore them when service restart.
-
- 22 Dec, 2009 3 commits
-
-
Lixin Yue authored
After receiving a file by OPP from Bluetooth remote device, user can delete this file from Gallery or 3rd party application. In Opp live folder, user could still open this file, but with dialog "file not exist" displayed, and there is no way to make this file disappear from liver folder. Current solution is to delete the BT OPP DB record after openning an invalid uri associated with the file in folder, as an easy method without syncing.
-
Lixin Yue authored
Catch IndexOutOfBoundsException and NullPointerException in Opp sendFile().
-
Lixin Yue authored
Bluetooth OPP to handle x-vcard MIME type from contacts share Handle vcard size by content type instead of tightening with contacts
-
- 30 Nov, 2009 1 commit
-
-
Lixin Yue authored
Should set the value of Notification.when before calling setLatestEventInfo() Dr No:Eastham Bug: 2292381
-
- 26 Nov, 2009 1 commit
-
-
Tao Liejun authored
Support to receive and send a few specific file types .xls, .zip, .doc, .ppt, .pdf
-
- 25 Nov, 2009 1 commit
-
-
Jaikumar Ganesh authored
While trying to share pictures, some applications might not have given the adequate permissions. DrNo:Jsh Bug:2284822
-
- 13 Nov, 2009 1 commit
-
-
Jaikumar Ganesh authored
This prevents an entry "My name" with "000000" in the car kit contacts. We now send only the name and the version in the vcf. Ideally, we could like to send an empty vcard, but we would need to test with various car kits with that works well. Original Change by: Lixin Yue Bug: 2247067 Dr No: Eastham
-
- 06 Nov, 2009 1 commit
-
-
Lixin Yue authored
This is to address below issue: There have been reports by users where they are seeing contacts in the carkit that are not present in the Contacts App UI but are present in the database. Bug: 2245178 Dr No: Eastham
-
- 02 Nov, 2009 3 commits
-
-
Jaikumar Ganesh authored
Call history handles should be ordered by "date DESC" per spec. The first handle 1.vcf should be the most recently happend call. Add order support for pullVcardListing reqeust: One typical use case for PBAP is: first use pullVcardListing request to display the contacts list, then use pullVcardEntry request to tirgger the selected contact vcard. In such case, we need keep the contact db query consistent for pullVcardListing and pullVcardEntry. Use "Own number" for phone owner number instead of "Unknown name" in case can not get the name from system. Original Change: Fan Jackson Dr No: Eastham Bug Id: 2183320
-
Daisuke Miyakawa authored
-
Daisuke Miyakawa authored
-
- 30 Oct, 2009 1 commit
-
-
Jaikumar Ganesh authored
Some car kits don't handle contacts with Photo Fields well. Disable this field for the time being. Original Change by: Yue Lixin Bug: 2183320 Dr No: Eastham
-
- 15 Oct, 2009 1 commit
-
-
Daisuke Miyakawa authored
Make Bluetooth code use new type instead of old.
-
- 12 Oct, 2009 1 commit
-
-
Daisuke Miyakawa authored
Internal Issue number: 2160039
-
- 08 Oct, 2009 2 commits
-
-
Nick Pelly authored
Do not merge. Change-Id: I428bc0fc67030f24112f2e9c865824dfaea4897d DrNo: eastham Bug: 2089423 Joke: Why does E.T. have such big eyes? Because he saw his phone bill.
-
Jaikumar Ganesh authored
file extension. Original Author for PBAP - Yue Lixin Dr No: Eastham Bug: 2174759
-
- 07 Oct, 2009 1 commit
-
-
Nick Pelly authored
Change-Id: I7baafb909b74783da4e51d48f2465e7aacf07eb5 DrNo: eastham Bug: 2158765 Joke: What goes 99-thump, 99-thump? A centipede with a wooden leg.
-
- 05 Oct, 2009 1 commit
-
-
Jaikumar Ganesh authored
Original Author: Fan Jackson Bug number: 2060933 Dr No: Eastham
-
- 02 Oct, 2009 1 commit
-
-
Jaikumar Ganesh authored
Move back socket closing sequence ahead of Thread.shutdown and join operation; Seperate socket closing and resetting as null to avoid NPE during service close Original Author: Fan Jackson Bug: 2158262 DrNo: Paul Change-Id: I2b36f3fb920c80602f5734a67a8cf6c6fbd00de4
-
- 30 Sep, 2009 3 commits
-
-
Daisuke Miyakawa authored
-
Lixin Yue authored
Adjust function call seqence in PBAP closeService
-
Lixin Yue authored
Add timeout handling to incoming file confirm dialog, to avoid uncertain behavior when timeout happen Fix PBAP request timeout issue when open/close slider, dismiss timeout dialog to avoid uncertain behavior Fix typo in strings
-
- 29 Sep, 2009 1 commit
-
-
Lixin Yue authored
Add check to incoming application parameter, be nice to accept PCE request Fix minor pullvCardEntry issue for call logs Fix one pullPhoneBook issue about request size
-
- 28 Sep, 2009 2 commits
-
-
Oscar Montemayor authored
Bug information: http://b/issue?id=1972237
-
Nick Pelly authored
Change-Id: Ia0eb46d9bdff6a8ab3333bb0ad1f66d0303c135a
-
- 27 Sep, 2009 1 commit
-
-
Oscar Montemayor authored
Proposed file canonical path prevetion for directory trasvesal attacks. Fix suggested by meder@google.com. More fixes form CR comments.
-
- 24 Sep, 2009 2 commits
-
-
Lixin Yue authored
Totally removed the use of old syncml.pim.vcard.VCardComposer
-
Tao Liejun authored
Use new API BluetoothDevice.fetchUuidsWithSdp() to query SDP for un-paired device, and request SDP update when Opp is not in cache. Handle a concurrent case when incoming connection and file share happens together Some other minor changes Change-Id: I7ebf34801518867553551d8f7bba7ac62e22667e
-
- 23 Sep, 2009 2 commits
-
-
Rich Cannings authored
Fixes NullPointerException that crashes Bluetooth when filename ends end with slash, e.g.: 'fooo..txt/'. choosefilename() can return null. We should handle this result and grecefully fail.
-
Lixin Yue authored
Update OPP BtEnabling Dialog-add timeout handling, handle Bluetooth ON intent, handle back key Change-Id: I3d3ade3a9a4de645ddb7195e8b81ca42afb3d31e
-
- 22 Sep, 2009 1 commit
-
-
Oscar Montemayor authored
Code review changes incorporated patch set 3 rev.
-
- 16 Sep, 2009 1 commit
-
-
Jaikumar Ganesh authored
-
- 11 Sep, 2009 1 commit
-
-
Nick Pelly authored
Change-Id: I618553f2aa4e8705e3dff1247752e5fc357ef94d
-