From 013453fdf552423d0d5bdad877d34562a8433fcc Mon Sep 17 00:00:00 2001 From: Adrian Castro <22133246+castdrian@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:54:35 +0100 Subject: [PATCH] chore: clean up --- apps/expo/app.config.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/apps/expo/app.config.ts b/apps/expo/app.config.ts index dc04199..ed6abb4 100644 --- a/apps/expo/app.config.ts +++ b/apps/expo/app.config.ts @@ -1,10 +1,12 @@ import type { ExpoConfig } from "expo/config"; +import { version } from "./package.json"; + const defineConfig = (): ExpoConfig => ({ name: "movie-web", slug: "mw-mobile", - scheme: "dev.movieweb.app", - version: "0.1.0", + scheme: "movieweb", + version, icon: "./assets/images/icon.png", userInterfaceStyle: "automatic", splash: { @@ -33,11 +35,6 @@ const defineConfig = (): ExpoConfig => ({ favicon: "./assets/images/favicon.png", bundler: "metro", }, - // extra: { - // eas: { - // projectId: "your-eas-project-id", - // }, - // }, experiments: { tsconfigPaths: true, typedRoutes: true,