aboutsummaryrefslogtreecommitdiff
path: root/framework/java
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | Merge "Bluetooth: add Volume Control Profile boilerpalate" am: ac034b8842 ↵Jakub Pawlowski2021-06-173-1/+335
|\| | | | | | | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | am: 126acb2597 Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1736553 Change-Id: Ic5e77ef574940ec720f82e3d13026e6d74863bc2
| * | | | | Merge "Bluetooth: add Volume Control Profile boilerpalate"Jakub Pawlowski2021-06-173-1/+335
| |\ \ \ \ \ | | |/ / / / | |/| | | |
| | * | | | Bluetooth: add Volume Control Profile boilerpalateŁukasz Rymanowski2021-06-143-1/+335
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is very simple API to allow Android to connect VCP profile. Bug: 150670922 Test: compilation Sponsor: jpawlowski@ CTS-Coverage-Bug: 190833351 Change-Id: Ib20d967fcf6797077abf83b40b0eda526e5ab89d Merged-In: Ib20d967fcf6797077abf83b40b0eda526e5ab89d
| * / / / Update nullability checks to use Objects#requireNonNullRahul Sabnis2021-06-143-23/+23
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead of deprecated method in Preconditions class Tag: #feature Bug: 190767948 Test: Manual Merged-In: Ie7f7282b89c13f587fdfe1bf3288eb4a3c7dcc6e Change-Id: Ie7f7282b89c13f587fdfe1bf3288eb4a3c7dcc6e
* | | | Update nullability checks to use Objects#requireNonNullRahul Sabnis2021-06-143-22/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead of deprecated method in Preconditions class Tag: #feature Bug: 190767948 Test: Manual Change-Id: Ie7f7282b89c13f587fdfe1bf3288eb4a3c7dcc6e
* | | | Merge "More Binder call AttributionSource assignment." into sc-devJeff Sharkey2021-06-0422-95/+147
|\ \ \ \
| * | | | More Binder call AttributionSource assignment.Jeff Sharkey2021-06-0322-95/+147
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since developers can use a BluetoothDevice object can make remote calls, it needs to have an accurate AttributionSource. Previous CLs had updated many places where these BluetoothDevice instances were passed across Binder interfaces, but this change updates several remaining locations which had been missed. Introduces new "Attributable" marker interface to offer consistent tooling when applying AttributionSource updates. Bug: 187097694 Test: atest BluetoothInstrumentationTests Change-Id: Icad3b9726591f0fbad58a493cefa5a0af7648280
* | | | | CloseGuard for more Bluetooth components.Jeff Sharkey2021-06-032-0/+23
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We've seen evidence of IBluetoothProfileServiceConnection and IBluetoothStateChangeCallback references being leaked, so attempt to unregister them when an object is finalized without closing. Bug: 189091551 Test: manual Change-Id: I23792d48d94578acd7fc7a5164a95171801ee721
* | | | Merge "Relax ACTION_TETHERING_STATE_CHANGED permissions." into sc-devJeff Sharkey2021-05-201-2/+0
|\ \ \ \
| * | | | Relax ACTION_TETHERING_STATE_CHANGED permissions.Jeff Sharkey2021-05-201-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This broadcast doesn't contain any sensitive BluetoothDevice extras; it only contains a single boolean indicating tethering state, so relax it to no longer require the BLUETOOTH_CONNECT permission. Bug: 188706031 Test: atest BluetoothInstrumentationTests Change-Id: I2ff5c501844186a5813b2347246bbc83c190222d
* | | | | Merge "Update BluetoothDevice#setAlias based on API council feedback: now ↵Rahul Sabnis2021-05-193-162/+258
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | accepts null input and returns an int (with error codes). Update CompanionDeviceManager#canPairWithoutPrompt to take a UserHandle instead of an int. Adds BluetoothStatusCodes class for all new Bluetooth error / success codes. Moved OOB and hci disconnect constants to the new BluetoothStatusCodes class." into sc-dev
| * | | | Update BluetoothDevice#setAlias based on API council feedback: nowRahul Sabnis2021-05-173-162/+258
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | accepts null input and returns an int (with error codes). Update CompanionDeviceManager#canPairWithoutPrompt to take a UserHandle instead of an int. Adds BluetoothStatusCodes class for all new Bluetooth error / success codes. Moved OOB and hci disconnect constants to the new BluetoothStatusCodes class. Tag: #feature Bug: 184714087 Test: atest BluetoothDeviceTest#test_setAlias_getAlias Change-Id: Ife03506f2cf68800f5824cb5fa94fec8aa34a39c
* | | | | Apply AttributionSource during Intent delivery.Jeff Sharkey2021-05-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are some Parcelables which offer to perform Binder calls, and when these are delivered via Intent extras they fallback to ActivityThread.currentAttributionSource(), instead of being tagged based on the relevant app component. This change begins using Intent.prepareToEnterProcess() as a hook to fix-up AttributionSource when those extras finally land in the destination process. It uses the relevant AttributionSource based on the Activity or Service the Intent is delivered to, which developers have control over via AppComponentFactory. In the case of <receiver> manifest elements, this change applies the first android:attributionTags value to the Context used for that BroadcastReceiver. Bug: 187097694 Test: atest AttributionTest Change-Id: I8f5197db7e8d7277d34f0ef2bb90bfdf1871186a
* | | | | Merge "Bluetooth ScanFilter: Allow null in setDeviceAddress" am: 561b4c8aad ↵Treehugger Robot2021-05-121-0/+4
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | am: d828a59648 am: 833b8108c9 Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1702025 Change-Id: I48df730d65443e2417acf24d563ef7d7ad780340
| * | | | Bluetooth ScanFilter: Allow null in setDeviceAddressMyles Watson2021-05-101-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 187076761 Test: manual scan filter test Change-Id: I6456be4baab4b2a2b6d4607619ff92370b8b457d
* | | | | Merge "Update docs for BluetoothDevice#fetchUuidsWithSdp to reflect that if ↵Rahul Sabnis2021-05-101-4/+4
|\| | | | | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | the device is bonding, we either broadcast cached UUIDs or wait for SDP to be performed after the device is bonded." am: 8e3fb4c4c1 am: f7fb98276e am: 60faa32ffb Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1698769 Change-Id: I0b4ae79183c1b6e72c75369a25ca375acd4e5331
| * | | Merge "Update docs for BluetoothDevice#fetchUuidsWithSdp to reflect that if ↵Rahul Sabnis2021-05-101-4/+4
| |\ \ \ | | | | | | | | | | | | | | | the device is bonding, we either broadcast cached UUIDs or wait for SDP to be performed after the device is bonded."
| | * | | Update docs for BluetoothDevice#fetchUuidsWithSdp to reflect that if theRahul Sabnis2021-05-071-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | device is bonding, we either broadcast cached UUIDs or wait for SDP to be performed after the device is bonded. Tag: #feature Bug: 187157597 Test: Manual Change-Id: I1bd694195c4e974b7cd72f81848a6343b45c98fd
* | | | | Merge "Ensure privileged APIs require runtime permission." into sc-devJeff Sharkey2021-04-293-45/+130
|\ \ \ \ \
| * | | | | Ensure privileged APIs require runtime permission.Jeff Sharkey2021-04-293-45/+130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When users revoke a runtime permission, they expect all interactions to be blocked, including those protected by the BLUETOOTH_PRIVILEGED permission. This change finishes applying that policy to any remaining Bluetooth APIs which didn't already implement it. To keep the implementation straightforward, this change does "data delivery" checks when registering for callbacks; the ideal behavior would be to wait until data is actually delivered through the callbacks, but RemoteCallbackList doesn't have support for AttributionSource yet. Bug: 186405452 Test: atest BluetoothInstrumentationTests Change-Id: Idd7be143eb8baff020a0718065293baae708041b
* | | | | | Merge changes from topic "bluetooth_oob_api" am: 2e67798711 am: cf7843a0f7 ↵Martin Brabham2021-04-291-2/+2
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | am: 79578466f4 Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1686315 Change-Id: I00dc7f393edb9b562c97147d053302159c12fcdb
| * | | | | Convert onOobData parameter for OobData from @Nullable to @NonNullMartin Brabham2021-04-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 185603183 Test: Compiles, test app works Tag: #feature Change-Id: I52636769f50f50b5ad2d135f54472bdeb1c25ee5
* | | | | | OOB: Remove static creator methods in favor of public constructors am: ↵Martin Brabham2021-04-291-85/+27
|\| | | | | | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 82f1ab97e7 am: e8638082e5 am: e5564193cf Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1684129 Change-Id: Ia4d99bf5f2dcee3d688796dfa3e11c1d104132a1
| * | | | OOB: Remove static creator methods in favor of public constructorsMartin Brabham2021-04-261-85/+27
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | Bug: 184370881 Tag: #feature Test: Manual compile Change-Id: I502cdf5adde324b7a41cfb6974f0b43b0064a911
| * | | Update docs to reflect LE batch scan report delay floorRahul Sabnis2021-04-201-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Tag: #feature Bug: 167340030 Test: Manual Change-Id: Ieeb0e6bccfc316fd4c8cdc40f6865b4185d6d9e8
* | | | Preserve legacy permission check behavior.Jeff Sharkey2021-04-283-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As part of the new "Nearby devices" permission work, the registerStateChangeCallback() API has been relaxed to no longer require permissions. However, we've discovered that some apps were depending on that SecurityException being thrown, so this change restores throwing behavior for those legacy apps. Bug: 186176507 Test: atest BluetoothInstrumentationTests Change-Id: Ife536dee246b300ffb3dd78aef0b059a230f3835
* | | | Long-tail of AttributionSource plumbing.Jeff Sharkey2021-04-2417-233/+362
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wires up AttributionSource across the remaining long-tail of Bluetooth AIDL interfaces, ensuring that developers can accurately make calls chained back to a specific Context. Moves "for data delivery" permission checks to happen in a single location on each interface to ensure they're performed consistently with the new AttributionSource arguments. Note that "for data delivery" isn't the best name; it's designed to represent that the requested action was performed and should result in the relevant appop being noted for the caller. This change has the positive side effect of ensuring that all interfaces are consistently enforcing the BLUETOOTH_CONNECT permission, even in the case where BLUETOOTH_PRIVILEGED is also required; this is what ensures that revoking the "Nearby devices" permission takes effect for all callers. Additionally, standardizing on enforcing permissions closer to the AIDL entry point reduces the need for @RequiresPermission annotations to be carried around inside the Bluetooth stack. Bug: 183626112 Test: atest BluetoothInstrumentationTests Change-Id: I8023dda654e325b8bfa2f0cdb994ad63a2b429d4
* | | | More AttributionSource plumbing.Jeff Sharkey2021-04-2319-155/+254
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To prepare for future work which will plumb AttributionSource values through all remaining AIDLs, we need profiles to interact directly with the specific BluetoothAdapter they were created from. This is how we'll ensure that the relevant AttributionSource can be chained down from the original Context they're obtained from. This change also marks getDefaultAdapter() as deprecated to clearly communicate that BluetoothManager.getAdapter() is the best-practice path to obtaining a correctly scoped BluetoothAdapter instance. Bug: 183626112 Test: atest BluetoothInstrumentationTests Change-Id: I1e15170d7679019bbb6e396279d6e633e3dad4d6
* | | | Pass attribution source to BT APIs.Oli Lan2021-04-229-168/+199
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds attribution source to BT method calls. This is now required to allow the app ops for the new BT permissions (BLUETOOTH_CONNECT, BLUETOOTH_ADVERTISE, and BLUETOOTH_SCAN) to be noted. Bug: 183626112 Test: atest BluetoothInstrumentationTests Change-Id: I81598553b762e491d6364064a2e1ef41dec89bf9
* | | | Refinement of AttributionSource handling.Jeff Sharkey2021-04-223-112/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous CLs had started passing AttributionSource values across Binder calls inside BluetoothDevice instances, but this can cause confuse the permission check logic in the future; we should instead always aim to use the AttributionSource closest to the app making the call, instead of parceling it. This change also improves logging to highlight when we're quietly treating a permission as denied, and when a UID is mismatched. Bug: 186106084 Test: atest BluetoothInstrumentationTests Change-Id: I5d3fdb3c573cb9e77474952d8680caa4c4c464eb
* | | | Merge "Pass AttributionSource to AdapterService methods." into sc-devJeff Sharkey2021-04-212-45/+59
|\ \ \ \
| * | | | Pass AttributionSource to AdapterService methods.Oli Lan2021-04-212-45/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds attribution source to AdapterService bluetooth method calls. This is now required to allow the app ops for the new bluetooth permissions (BLUETOOTH_CONNECT, BLUETOOTH_ADVERTISE, and BLUETOOTH_SCAN) to be noted. Bug: 183626112 Test: atest AdapterServiceTest Test: atest CtsPermissionTestCases:android.permission.cts.NearbyDevicesPermissionTest Change-Id: I8d1fe41ca9945a3baab584f248a17b3a1eb255f7
* | | | | Merge "Annotations for Bluetooth broadcast intents." into sc-devJeff Sharkey2021-04-2114-6/+115
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Annotations for Bluetooth broadcast intents.Jeff Sharkey2021-04-2114-6/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent work has been using Error Prone rules and annotations to reflect the current state of permission enforcement across the Bluetooth stack, and we're now in a position were we can add new permission enforcement that had been missing. We've currently standardized on saying that APIs that return device or Bluetooth state information (without sharing details about any particular remote Bluetooth device) do not need to be permission protected. Bug: 183626724 Test: ./build/soong/soong_ui.bash --make-mode Bluetooth RUN_ERROR_PRONE=true Change-Id: I53ac7a4fe1dea57316048c3cac4fa237b6ba3d38
| * | | | Merge "Revert "Set a floor value for BLE Batch Scan report delay of 5000ms"" ↵Nataniel Borges2021-04-201-23/+6
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | am: 6528da5667 am: 245493eba6 am: 4eed9b5125 Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1681445 Change-Id: Ia2a73845fb92c457b37bacef7542aa47535560d4
| | * | | | Revert "Set a floor value for BLE Batch Scan report delay of 5000ms"Nataniel Borges2021-04-201-23/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit ae8fd75393f903bfe10f478dbd0f6142e75831cb. Reason for revert: b/185890964 Change-Id: I270dc16de0e24728c694830fbe920786b6d90174
| * | | | | Merge "Set a floor value for BLE Batch Scan report delay of 5000ms" am: ↵Treehugger Robot2021-04-201-6/+23
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ce2a2c80dd am: 254e10a238 am: 5af67f8790 Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1676810 Change-Id: I2aafeceb53a673e0172e5873c7354a6d59acc530
| | * | | | Set a floor value for BLE Batch Scan report delay of 5000msRahul Sabnis2021-04-191-6/+23
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tag: #feature Bug: 167340030 Test: Manual Change-Id: I4ef99a9562f1447a2ccee42a344384a38a487c19
| | * | | OOB generateLocalOobDataMartin Brabham2021-04-151-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unhide @SystemApi callback methods Bug: 178007935 Tag: #feature Test: compiles Change-Id: I2d4167a6c92ee0cc24da12df206838161c8f3318 Merged-In: I2d4167a6c92ee0cc24da12df206838161c8f3318
* | | | | Update docs to reflect LE batch scan report delay floorRahul Sabnis2021-04-201-5/+7
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | Tag: #feature Bug: 167340030 Test: Manual Change-Id: Ieeb0e6bccfc316fd4c8cdc40f6865b4185d6d9e8
* | | | Add missing Bluetooth API permission enforcement.Jeff Sharkey2021-04-186-0/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent work has been using Error Prone rules and annotations to reflect the current state of permission enforcement across the Bluetooth stack, and we're now in a position were we can add new permission enforcement that had been missing. We've currently standardized on saying that APIs that return device or Bluetooth state information (without sharing details about any particular remote Bluetooth device) do not need to be permission protected. Bug: 183626724 Test: ./build/soong/soong_ui.bash --make-mode Bluetooth RUN_ERROR_PRONE=true Change-Id: I37a9e03ecdca6f7a6eb9d7f094e2f95a97036612
* | | | More Bluetooth API annotation updates.Jeff Sharkey2021-04-1632-22/+278
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds a "BluetoothPermissionChecker" that ensures that all Bluetooth permission annotations are consistent. In addition, it verifies that all Bluetooth public APIs have been audited to be permission protected where relevant. We've currently standardized on saying that APIs that return device or Bluetooth state information (without sharing details about any particular remote Bluetooth device) do not need to be permission protected. This change is only annotations and has no behavior changes. Bug: 183626724 Test: ./build/soong/soong_ui.bash --make-mode Bluetooth RUN_ERROR_PRONE=true Change-Id: Ie80b15b058359bf1e9a6ee881b89cb3e5b584ca1
* | | | Refine BluetoothLeAdvertiser permissions.Jeff Sharkey2021-04-152-27/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Technically these APIs required both ADVERTISE and CONNECT, since internally it would attempt getting the device name as part of calculating packet lengths. These methods shouldn't require the CONNECT permission, so we add a getNameLengthForAdvertise() method internally to remove this dependency. Bug: 183626724 Test: ./build/soong/soong_ui.bash --make-mode Bluetooth RUN_ERROR_PRONE=true Change-Id: I245417bfc26d6d3a4f8be14077c7f1d271b5959e
* | | | Merge changes from topic "apr10" into sc-devJeff Sharkey2021-04-1538-431/+1402
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | * changes: Update Bluetooth API annotations. Error Prone for RequiresPermission across AIDL.
| * | | | Update Bluetooth API annotations.Jeff Sharkey2021-04-1438-431/+1402
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent work has introduced a new "Nearby devices" runtime permission which protects all existing Bluetooth APIs; we've done this by defining a <split-permission> to convert the old BLUETOOTH and BLUETOOTH_ADMIN permissions into one of three new permissions: * BLUETOOTH_ADVERTISE: Required to be able to advertise to nearby Bluetooth devices. * BLUETOOTH_CONNECT: Allows applications to connect to paired bluetooth devices. * BLUETOOTH_SCAN: Required to be able to discover and pair nearby Bluetooth devices. At its core, this change begins updating the Bluetooth APIs to have correct @RequiresPermission indicating which permission is actually enforced internally. To ensure alignment across Binder, the newly added "RequiresPermissionChecker" Error Prone checker was used to discover any inconsistencies, ensuring correctness from server-side enforcement up through to the public APIs. In addition, since developers will continue building apps for both modern and legacy platforms, this change introduces new auto-doc annotations which will emit helpful consistent documentation describing the behavior of older devices that are still using the old permission model. Bug: 183626724 Test: ./build/soong/soong_ui.bash --make-mode Bluetooth RUN_ERROR_PRONE=true Change-Id: I02aa127e8e07f239561f4f2a3bbdfc6fccb82f7f
* | | | | Merge "Bluetooth OOB: Fix getLeAppearance" am: ef0304a087 am: 4829eb69df am: ↵Treehugger Robot2021-04-151-1/+1
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / / | | | | | | | | | | | | | | | | 8cd63de3e5 Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1673875 Change-Id: I8d2d9d4ea7bfa3b9a3a4bfe358da4275688b6f19
| * | | Bluetooth OOB: Fix getLeAppearanceHansong Zhang2021-04-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Bug: 185196125 Test: Use OOB pairing Change-Id: I1cb1c33b0b17f2fd242f6579844996c2ccf09e62
| * | | OOB: Implement getLocalOutOfBand APIMartin Brabham2021-04-072-0/+182
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CTS-Coverage-Bug: 184395281 Bug: 178007935 Tag: #feature Test: manual Change-Id: I5bc11ac13d9cbb8f76f422aa4aea8295ebec95b4 Merged-In: I5bc11ac13d9cbb8f76f422aa4aea8295ebec95b4
* | | | OOB generateLocalOobDataMartin Brabham2021-04-141-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unhide @SystemApi callback methods CTS-Coverage-Bug: 184395281 Bug: 178007935 Tag: #feature Test: compiles Change-Id: I2d4167a6c92ee0cc24da12df206838161c8f3318
* | | | Merge "OOB: Implement generateLocalOutOfBand API" into sc-devTreeHugger Robot2021-04-072-0/+182
|\ \ \ \