We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf13cf commit 88c5cf0Copy full SHA for 88c5cf0
packages/core/application/application.android.ts
@@ -723,6 +723,10 @@ let touchExplorationStateChangeListener: android.view.accessibility.Accessibilit
723
let sharedA11YObservable: AndroidSharedA11YObservable;
724
725
function updateAccessibilityState(): void {
726
+ if (!sharedA11YObservable) {
727
+ return;
728
+ }
729
+
730
const accessibilityManager = getAndroidAccessibilityManager();
731
if (!accessibilityManager) {
732
sharedA11YObservable.set(accessibilityStateEnabledPropName, false);
0 commit comments