fix: restore missing Bluetooth permissions on Android#1846
Open
jburbach wants to merge 1 commit into100mslive:mainfrom
Open
fix: restore missing Bluetooth permissions on Android#1846jburbach wants to merge 1 commit into100mslive:mainfrom
jburbach wants to merge 1 commit into100mslive:mainfrom
Conversation
Bluetooth audio devices are not recognized on Android since v1.10.0. In commit 4c5fb25 (Jan 2024, "removed bluetooth permissions"), BLUETOOTH and BLUETOOTH_CONNECT were removed from both the SDK manifest and the example app manifest. The sample apps were later updated to re-add them (14170ae), but the SDK and example app were never corrected. Without these permissions, the native Android SDK cannot enumerate Bluetooth audio devices — only AUTOMATIC appears in the device list. This adds them back to: - SDK manifest (auto-merged into all consuming apps) - Example app manifest (for explicitness) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Author
|
@ygit I think this should fix the bluetooth issue in andriod. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
AUTOMATICappears in the audio device list,BLUETOOTHis missing.4c5fb252("removed bluetooth permissions", Jan 2024) intentionally removedBLUETOOTHandBLUETOOTH_CONNECTfrom both the SDK manifest and the example app manifest.14170aee(Jun 2024) to re-add these permissions, but the SDK manifest and example app were never updated — creating an inconsistency where sample apps work but the SDK itself and its example app do not.packages/hmssdk_flutter/android/src/main/AndroidManifest.xml) — automatically merged into all consuming apps via Android manifest mergingpackages/hmssdk_flutter/example/android/app/src/main/AndroidManifest.xml) — for explicitness