You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although I did apply temporary workaround for the issue — commented out one check in FBSimulatorBridge.m
#pragma mark Interacting with the Simulator
- (FBFuture<NSNull *> *)enableAccessibility
{
return [[selfinteractWithBridge]
onQueue:self.workQueue fmap:^(SimulatorBridge *bridge) {
// Set the Bridge to a good state.
[bridge enableAccessibility];
// if (![bridge accessibilityEnabled]) {// return [[FBSimulatorError// describeFormat:@"Could not enable accessibility for bridge '%@'", bridge]// failFuture];// }return [FBFuture futureWithResult:NSNull.null];
}];
}
When trying to set location using command
then get error
Here is full stacktrace:
Did quick analysis of class-dump
and I see that property
accessibilityEnabled
was removed fromSimulatorBridge
(see full diff lower)The text was updated successfully, but these errors were encountered: