From b29fc73218b37682a9aeab3c7180c18d4ffd663e Mon Sep 17 00:00:00 2001 From: Ty Rauber Date: Mon, 28 Oct 2024 12:33:22 +0100 Subject: [PATCH] feat: configure expo-build-properties --- packages/expo-app/app.config.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages/expo-app/app.config.ts b/packages/expo-app/app.config.ts index 2584cc201..746ed4a0a 100644 --- a/packages/expo-app/app.config.ts +++ b/packages/expo-app/app.config.ts @@ -26,5 +26,19 @@ export default ({ config }: ConfigContext): ExpoConfig => ({ plugins: [ ["expo-dev-launcher", { launchMode: "most-recent" }], "@maplibre/maplibre-react-native", + [ + "expo-build-properties", + { + ios: { + deploymentTarget: "15.1", + hermesEnabled: true, + newArchEnabled: true, + }, + android: { + hermesEnabled: true, + newArchEnabled: true, + }, + }, + ], ], });