From 6af0a34e70207e5f3507fd5e635e4e01fcba6840 Mon Sep 17 00:00:00 2001 From: Oscar Date: Wed, 24 Apr 2024 10:35:13 -0400 Subject: [PATCH] Update android defaults to more modern device/os --- packages/devices/src/getDevices.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/devices/src/getDevices.ts b/packages/devices/src/getDevices.ts index 22289eb..5bf6011 100644 --- a/packages/devices/src/getDevices.ts +++ b/packages/devices/src/getDevices.ts @@ -2,7 +2,7 @@ import { Platform } from "@storybook/native-types"; export const getDefaultDevice = (platform: Platform): string => { if (platform === "android") { - return "nexus5"; + return "pixel4"; } if (platform === "ios") { return "iphone15pro"; @@ -51,7 +51,7 @@ export const getDevices = (platform: Platform): string[] => { export const getDefaultOsVersion = (platform: Platform): string => { if (platform === "android") { - return "11.0"; + return "13.0"; } if (platform === "ios") { return "17.0";