···12121313import {isNetworkError} from '#/lib/strings/errors'
1414import {logger} from '#/logger'
1515-import {isIOS} from '#/platform/detection'
1515+import {isAndroid, isIOS} from '#/platform/detection'
1616import {IS_TESTFLIGHT} from '#/env'
17171818const MINIMUM_MINIMIZE_TIME = 15 * 60e3
···192192 if (!isEnabled || currentChannel?.startsWith('pull-request')) {
193193 return
194194 }
195195+196196+ // TEMP: disable wake-from-background OTA loading on Android.
197197+ // This is causing a crash when the thread view is open due to
198198+ // `maintainVisibleContentPosition`. See repro repo for more details:
199199+ // https://github.com/mozzius/ota-crash-repro
200200+ // Old Arch only - re-enable once we're on the New Archictecture! -sfn
201201+ if (isAndroid) return
195202196203 const subscription = AppState.addEventListener(
197204 'change',