-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BeeTee doesn't work in iOS 14.5 #28
Comments
@michaeldorner Can you help me about this problem? |
Sorry I don’t have the time to work on the project currently. |
Same here. |
@yujinakayama if you find a solution please let us know. thank you. |
I am also getting the same issue. Bluetooth connection notifications have also stopped working for me. |
@iamabilash I guess the main problem is BluetoothManagerHandler's enabled(). if we solve this problem Notifications will be ok. |
@smsdm4 okay. I have tried updating the private headers but in vain so far but I think the BluetoothManager framework bundle is still supported in IOS 14.5. It might be possible that methods have been changed. Please do let me know if you get anything on it. |
Let's wait until the new header for iOS 14.5 are available (e.g. here). Probably the method signature has changed. |
Hi, Are you able to find any solution for the issue? |
Also interested in knowing if there is a possible solution for this issue? |
I still did not find a solution, I had to change it completely. |
May I know anyone try this on iOS 15? |
After some research and trial-and-error, I gave up using BluetoothManager.framework. If you need only the following features:
You can utilize import AVFAudio
var isConnectedToBluetoothAudioDevice: Bool {
let route = AVAudioSession.sharedInstance().currentRoute
return route.outputs.first?.portType == .bluetoothA2DP
}
NotificationCenter.default.addObserver(forName: AVAudioSession.routeChangeNotification, object: nil, queue: .main) { (notification) in
if isConnectedToBluetoothAudioDevice {
// Do something
}
} |
hello,
after update my iPhone 7 to iOS 14.5, my application using BeeTee doesn't work.
Anybody looking into this issue?
The text was updated successfully, but these errors were encountered: