diff --git a/apps/mobile/.gitignore b/apps/mobile/.gitignore index 0b37b6e..591a301 100644 --- a/apps/mobile/.gitignore +++ b/apps/mobile/.gitignore @@ -7,6 +7,8 @@ node_modules/ .expo/ dist/ web-build/ +android/ +ios/ # Native *.orig.* diff --git a/apps/mobile/app.json b/apps/mobile/app.json index 6e6d68e..a7610a4 100644 --- a/apps/mobile/app.json +++ b/apps/mobile/app.json @@ -12,22 +12,28 @@ "resizeMode": "contain", "backgroundColor": "#ffffff" }, - "assetBundlePatterns": ["**/*"], + "assetBundlePatterns": [ + "**/*" + ], "ios": { - "supportsTablet": true + "supportsTablet": true, + "bundleIdentifier": "dev.movieweb.app" }, "android": { "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive-icon.png", "backgroundColor": "#ffffff" - } + }, + "package": "dev.movieweb.app" }, "web": { "bundler": "metro", "output": "static", "favicon": "./assets/images/favicon.png" }, - "plugins": ["expo-router"], + "plugins": [ + "expo-router" + ], "experiments": { "typedRoutes": true } diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 875b2a6..e0d4931 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -4,8 +4,8 @@ "version": "1.0.0", "scripts": { "start": "expo start", - "android": "expo start --android", - "ios": "expo start --ios", + "android": "expo run:android", + "ios": "expo run:ios", "web": "expo start --web", "test": "jest --watchAll", "lint": "eslint . --ext .js,.jsx,.ts,.tsx",