diff --git a/app.json b/app.json index 6ba124e..b052536 100644 --- a/app.json +++ b/app.json @@ -1,7 +1,7 @@ { "expo": { - "name": "HelloWorld", - "slug": "expo-template-default", + "name": "Tech Tracker Expo", + "slug": "tech-tracker-expo", "version": "1.0.0", "orientation": "portrait", "icon": "./assets/images/icon.png", @@ -9,13 +9,15 @@ "userInterfaceStyle": "automatic", "newArchEnabled": true, "ios": { - "supportsTablet": true + "supportsTablet": true, + "bundleIdentifier": "com.gibbyb.techtrackerexpo" }, "android": { "adaptiveIcon": { "foregroundImage": "./assets/images/adaptive-icon.png", "backgroundColor": "#ffffff" - } + }, + "package": "com.gibbyb.techtrackerexpo" }, "web": { "bundler": "metro", @@ -36,6 +38,18 @@ ], "experiments": { "typedRoutes": true + }, + "extra": { + "eas": { + "projectId": "7d872415-9160-4e06-ba95-4c3442e04b79" + } + }, + "owner": "gibbyb", + "updates": { + "url": "https://u.expo.dev/7d872415-9160-4e06-ba95-4c3442e04b79" + }, + "runtimeVersion": { + "policy": "appVersion" } } -} \ No newline at end of file +} diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..58c2b52 --- /dev/null +++ b/eas.json @@ -0,0 +1,47 @@ +{ + "cli": { + "version": ">= 14.5.0", + "appVersionSource": "remote" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal", + "android": { + "image": "latest" + }, + "ios": { + "image": "latest" + } + }, + "development-simulator": { + "extends": "development", + "ios": { + "simulator": true + } + }, + "preview": { + "distribution": "internal", + "channel": "main", + "android": { + "image": "latest" + }, + "ios": { + "image": "latest" + } + }, + "production": { + "channel": "production", + "autoIncrement": true, + "android": { + "image": "latest" + }, + "ios": { + "image": "latest" + } + } + }, + "submit": { + "production": {} + } +} diff --git a/package.json b/package.json index 0a8573d..b79d92f 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "expo-template-default", + "name": "tech-tracker-expo", "license": "0BSD", "main": "expo-router/entry", "version": "52.0.59", @@ -39,7 +39,10 @@ "react-native-safe-area-context": "4.12.0", "react-native-screens": "~4.4.0", "react-native-web": "~0.19.13", - "react-native-webview": "13.12.5" + "react-native-webview": "13.12.5", + "expo-dev-client": "~5.0.10", + "expo-insights": "~0.8.2", + "expo-updates": "~0.26.13" }, "devDependencies": { "@babel/core": "^7.25.2",