iOS 15 (Beta) showBluetoothAccessoryPickerWithNameFilter doesn't work anymore

With iOS 15 Beta (2) the framework EAAccessoryManager doesn't display the 'showBluetoothAccessoryPickerWithNameFilter' anymore.

Does someone experience same issues?

Accepted Reply

Also does not work with iOS 15 beta 3

Replies

Also does not work with iOS 15 beta 3

Still no progress with iOS 15 beta 5

Still no progress with iOS 15 beta 5

What was your bug number?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

I ve got an Feedback number: FB9492735

FB9492735

Thanks. It looks like you just filed that, so there’s no info that I can share right now.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Here is what I got so far:

The showBluetoothAccessoryPickerWithNameFilter dosnt work anymore with XCode 13 and iOS 15 Beta 5. Therefore I try to build it with Apples EADeamo (https://developer.apple.com/library/archive/samplecode/EADemo/Introduction/Intro.html) with XCode 12.5.1 to check if it is my app or other dependences.

In Apples EADemo I add in file "RootViewController.m" in the "viewDidLoad" function:

    NSPredicate *predicate = nil;
    [[EAAccessoryManager sharedAccessoryManager] showBluetoothAccessoryPickerWithNameFilter:predicate completion:
     ^(NSError *error) {
     //dismiss
        NSLog(@"Error");
     if (error.code == 1)
     {
         NSLog(@"Erro1");
     }
     else if (error.code == 3)
     {
         NSLog(@"Error3");
     }  
}];

The Result:

With XCode 12.5.1 and iOS 14.7.1 (iPhone 7) the picker view is displayed. With XCode 13 Beta 3 and iOS 15 Beta 5 (iPod 7th Gen) the picker view is not displayed.

I also get the error message:

[lifecycle] [u B1CE210D-7C6E-4D43-84D1-CF514B77D6D3:m (null)] [com.apple.CoreBluetoothUI.BTDevicePickerUI(1.0)] Connection to plugin interrupted while in use.

Thanks for your help!

Did you add a sysdiagnose log to your bug report? I can’t see one there and that log is an important step in us routing your bug correctly.

For advice on how to get this log, see Bug Reporting > Profiles and Logs. Oh, and it says this in the instructions but it’s important to reiterate here: Trigger the sysdiagnose log as soon as possible after reproducing the problem.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Add a Comment

This issue is still happening on iOS 15 Beta 8. I tested on a iphone XS with iOS 14.8 and the picker view is not displayed too.

This issue is still happening on iPod Touch 7th with iOS14.8, iOS15.1 that the picker view is not displayed.