Set Browsing bit to 0 in PbapSupportedFeatures
PbapClient currently doesn't support browsing. This CL sets the bit to
zero in PbapSupportedFeatures to accurately reflect the functionalities.
Bug: 139624050
Test: Check the snoop/HCI logs. Look under the OBEX protocol header of
the connection request packet for PBAP. Under Application Parameters >
PbapSupportedFeatures, verify the Browsing bit is now 0.
Change-Id: I2fcd959abf6aba178cd5fffb2f6e69cf1863fd89
Merged-In: I2fcd959abf6aba178cd5fffb2f6e69cf1863fd89
(cherry picked from commit 522d6cb1d42b80b64a51645105ec5bb0b561a5e9)
diff --git a/src/com/android/bluetooth/pbapclient/PbapClientConnectionHandler.java b/src/com/android/bluetooth/pbapclient/PbapClientConnectionHandler.java
index 914b5b1..e2e35be 100644
--- a/src/com/android/bluetooth/pbapclient/PbapClientConnectionHandler.java
+++ b/src/com/android/bluetooth/pbapclient/PbapClientConnectionHandler.java
@@ -88,7 +88,7 @@
private static final long PBAP_FILTER_NICKNAME = 1 << 23;
private static final int PBAP_SUPPORTED_FEATURE =
- PBAP_FEATURE_DEFAULT_IMAGE_FORMAT | PBAP_FEATURE_BROWSING | PBAP_FEATURE_DOWNLOADING;
+ PBAP_FEATURE_DEFAULT_IMAGE_FORMAT | PBAP_FEATURE_DOWNLOADING;
private static final long PBAP_REQUESTED_FIELDS =
PBAP_FILTER_VERSION | PBAP_FILTER_FN | PBAP_FILTER_N | PBAP_FILTER_PHOTO
| PBAP_FILTER_ADR | PBAP_FILTER_EMAIL | PBAP_FILTER_TEL | PBAP_FILTER_NICKNAME;