- Add eas.json with development, preview, and production profiles - Link project to EAS (projectId: 93c75cae-fecf-4ce5-8cd8-c823760b12e2) - Add expo-dev-client, expo-constants, expo-linking dependencies - Remove eas-cli from project deps (use globally) - Add ITSAppUsesNonExemptEncryption to iOS infoPlist - Use catalog react with expo.install.exclude to skip version check - Fix slug to match EAS project registration - Run pnpm dedupe to resolve duplicate react across workspaces Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
1 KiB
TypeScript
43 lines
1 KiB
TypeScript
import { ExpoConfig, ConfigContext } from "expo/config";
|
|
|
|
export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
...config,
|
|
name: "trails.cool",
|
|
slug: "mobile",
|
|
version: "0.0.1",
|
|
scheme: "trailscool",
|
|
orientation: "portrait",
|
|
icon: "./assets/icon.png",
|
|
userInterfaceStyle: "light",
|
|
splash: {
|
|
image: "./assets/splash-icon.png",
|
|
resizeMode: "contain",
|
|
backgroundColor: "#ffffff",
|
|
},
|
|
ios: {
|
|
supportsTablet: true,
|
|
bundleIdentifier: "cool.trails.app",
|
|
infoPlist: {
|
|
NSAppTransportSecurity: {
|
|
NSAllowsLocalNetworking: true,
|
|
},
|
|
ITSAppUsesNonExemptEncryption: false,
|
|
},
|
|
},
|
|
android: {
|
|
adaptiveIcon: {
|
|
foregroundImage: "./assets/adaptive-icon.png",
|
|
backgroundColor: "#ffffff",
|
|
},
|
|
package: "cool.trails.app",
|
|
},
|
|
web: {
|
|
favicon: "./assets/favicon.png",
|
|
},
|
|
plugins: ["expo-router", "expo-secure-store", "expo-web-browser"],
|
|
extra: {
|
|
eas: {
|
|
projectId: "93c75cae-fecf-4ce5-8cd8-c823760b12e2",
|
|
},
|
|
},
|
|
});
|