diff --git a/desktop/plugins/crash_reporter/index.js b/desktop/plugins/crash_reporter/index.js index 280dbf485..6130e67a5 100644 --- a/desktop/plugins/crash_reporter/index.js +++ b/desktop/plugins/crash_reporter/index.js @@ -531,7 +531,10 @@ export default class CrashReporterPlugin extends FlipperDevicePlugin< static defaultPersistedState = {crashes: []}; static supportsDevice(device: Device) { - return device.os === 'iOS' || device.os === 'Android'; + return ( + (device.os === 'iOS' && device.deviceType !== 'physical') || + device.os === 'Android' + ); } static notificationID: number = 0;