d9bd906c02fd27e51e637ee661e424951ff27f39 |
|
20-Dec-2012 |
Zhihai Xu <zhihaixu@google.com> |
Merge "Bluetooth OPP should sanitize Uri data and MIME types before calling startActivity"
|
e3e1e8d1fe2a75b38ee1dfe5a102685877a22f84 |
|
29-Sep-2012 |
Fred <fredc@broadcom.com> |
Fixed potention ANR issue with Bluetooth OPP share. Updated BluetoothOppLauncherActivity so the call to BluetoothOppManager.saveSendingFileInfo() runs on a child thread. saveSendingFileInfo() opens/constructs the content stream, which can take a long time, depending on the type of content. It should not run inside the main UI thread of the BluetoothOppLauncherActivity. Bug 6802063 Change-Id: Id34b33fe37eb029d6a7592a811bbc9bbcde14ba8
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
3911cfeb7c5e2242dcce91e3b66d9449dec0bd05 |
|
11-Oct-2012 |
Zhihai Xu <zhihaixu@google.com> |
Bluetooth OPP should sanitize Uri data and MIME types before calling startActivity bug 5842045 Change-Id: I00a80fc7dc6c6031ab35113539ff6cdf4cf230a6
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
74ae04c73312403e89db0f8e9bd9601d403b4783 |
|
07-May-2012 |
fredc <fredc@broadcom.com> |
Fixed memory leak in Binder objects from repeatedly turning on/off Bluetooth Change-Id: Ibee5382816d47b1e9b846461942a9daccc4210a7
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
03f25a2055e51bcc5e8870642763b502956b6830 |
|
18-May-2012 |
Martijn Coenen <maco@google.com> |
Bluetooth OPP: Allow sending all mime-types for handover. This change allows sending of all mime-types through ACTION_HANDOVER_SEND and ACTION_HANDOVER_SEND_MULTIPLE. These intent actions are only used by NFC when doing handover transfers, and require the whitelisting permission that is only granted to system applications. Similarly, for receiving, we will still reject certain mimetypes, except if the transfer was whitelisted because it was a handover transfer. At this moment, only the NFC service has the signature permission required for whitelisting. This change also allows to send files without extension, as long as OPP has a valid mimeType. This is useful when using OPP in combination with a content provider, which may specify filenames without any extension but with a valid mime-type. Bug: 6561169 Change-Id: Ia39418de6bcb2f8af678c7b8637b63b1697eb493
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
a1f935d1a2a21d82a4069d1832e2d7239d7a256f |
|
24-May-2012 |
Martijn Coenen <maco@google.com> |
Fix variable initialization. This could cause Bluetooth file transfers to fail. Change-Id: I69b91e84cb7df1f147581e37f056eeacd54687d8
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
8099f5e7bfa7227ba674b5f0076f331e737bafd7 |
|
06-Apr-2012 |
Martijn Coenen <maco@google.com> |
Additional changes to support Bluetooth Beam. - Added a whitelist permission, to ensure only system services (such as NFC) can whitelist MAC addresses. - Added HANDOVER_STATUS permission, to ensure handover transfer status can only be received by eligible services (such as NFC). - Added new confirmation type HANDOVER_CONFIRMED; this indicates the transfer was initiated by a handover, and doesn't need to be confirmed. This type is also reused to send broadcasts to the NFC service, so the NFC service can show notifications and deal with the received data. - Added 15 second timeout to whitelist. - Modify notication code to not show any notifications for handover transfers; instead, send broadcasts to indicate handover status. - Modify "transfer complete" code to sendbroasts to indicate handover status. Change-Id: I00c08e09eaf44f0bd4bd837cb6b0c37b802742bc
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
d6eaf19f39e163e16d22e29907edec402b30622e |
|
04-Apr-2012 |
Nick Pelly <npelly@google.com> |
First cut at Bluetooth Beam. Add Bluetooth address white-listing to avoid receive confirmation from Beam interactions. Change-Id: I25720c6e902c494cbb9845a30a175edad4225b89
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
a85ff0a96f7d5f64bf1e9ca99789cb8dc69f6d97 |
|
05-Jan-2011 |
Kevin LeBlanc <kevin.leblanc@sonyericsson.com> |
Check if BT is allowed in airplane mode Currenty, the bluetooth sharing activity always quits with an error message if airplane mode is on. Instead, the activity should check if bluetooth may be enabled in airplane mode, given the current system settings. Change-Id: If9272a941504054d7819e0248f93a8b5bca8d41e
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
151f41949621e082e127fe468bedd28289bc3a19 |
|
12-Mar-2010 |
Lixin Yue <L.X.YUE@motorola.com> |
Enhanced support to OPP content share Add support to Browser link share via BT; Add support to share files via BT in 3rd party file manager; Change-Id: I9a93eb0891d0f670109afd44ab4064f7f15b01f3
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
c6f1bacf1d4c39d7efd5dc98004d936c18ed51f1 |
|
23-Dec-2009 |
Lixin Yue <L.X.YUE@motorola.com> |
Move insert share info operation to a thread to avoid Receiver timeout 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.
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
9d9e511fe7425fb3105ece227ecedb43d6333333 |
|
21-Sep-2009 |
Tao Liejun <L.J.Tao@motorola.com> |
Use new SDP API for OPP 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
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
f2c447b81c6c03cb1c8a3e64a10381e23934834a |
|
10-Sep-2009 |
Nick Pelly <npelly@google.com> |
Update application for Bluetooth API changes. Change-Id: I618553f2aa4e8705e3dff1247752e5fc357ef94d
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
ce4d93666275df294cb073fe41de5b85932570a8 |
|
28-Aug-2009 |
Nick Pelly <npelly@google.com> |
Clean up Logging. Use the pattern if (V) Log.v(...); for logging. The Android style prefers curly braces, but for log lines it is ok to use a one-liner to keep the code manageable. Remove spaces from some log tags, and rename TAG BluetoothShareProvider to BluetoothOpp. Rename LOGVV to V, and LOGV to D. Just before ship we will change Constants.DEBUG and Constants.VERBOSE to false to compile out all the logging code.
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
d6641e4a7bb22833e1c07cb3af7989835fa7e16d |
|
19-Aug-2009 |
Tao Liejun <L.J.Tao@motorola.com> |
Remove Device picker
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
1ac5507790a87810061a19dadec36eb328a222ea |
|
07-Aug-2009 |
Tao Liejun <L.J.Tao@motorola.com> |
OPP update Rewrite provider permission to allow LiveFolders work Support file:// uri to share file Support multiple share from gallery Fully support sending file queue Hold incoming connection for a while when OPP is busy instead of reject directly Move notification update to a thread Handle many error cases to display correct error messages Improve server/client timeout Delete empty file after reject incoming file Support upper case incoming file extension Avoid multiple mediascanner connections
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
6769b59d715ea98bd72eafcfea9acd2714a887da |
|
15-Jul-2009 |
Tao Liejun <L.J.Tao@motorola.com> |
Make opp compile Modify to make opp application compliable in new git -change package name -change manifest -modify a few comments
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|
09e9cba205af60b3f42e7a4d891a7d1392e1f2a5 |
|
11-Jul-2009 |
Nick Pelly <npelly@google.com> |
Initial drop of Motorola Bluetooth OPP code. Minor changes from Moto code: - Added Motorola BSD license - Moved com.motorola.bluetoothshare to com.android.bluetooth.opp - Updated com.motorola.obex to javax.obex - Moved Android.mk to Android.mk.hide: does not yet compile due to changes in Obex library.
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/BluetoothOppLauncherActivity.java
|