expo_template/app.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2025-01-28 08:19:46 -06:00
{
"expo": {
2025-01-28 14:19:55 +00:00
"name": "Tech Tracker Expo",
"slug": "tech-tracker-expo",
2025-01-28 08:19:46 -06:00
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
2025-01-28 14:19:55 +00:00
"supportsTablet": true,
"bundleIdentifier": "com.gibbyb.techtrackerexpo"
2025-01-28 08:19:46 -06:00
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
2025-01-28 14:19:55 +00:00
},
"package": "com.gibbyb.techtrackerexpo"
2025-01-28 08:19:46 -06:00
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
]
],
"experiments": {
"typedRoutes": true
2025-01-28 14:19:55 +00:00
},
"extra": {
"eas": {
"projectId": "7d872415-9160-4e06-ba95-4c3442e04b79"
}
},
"owner": "gibbyb",
"updates": {
"url": "https://u.expo.dev/7d872415-9160-4e06-ba95-4c3442e04b79"
},
"runtimeVersion": {
"policy": "appVersion"
2025-01-28 08:19:46 -06:00
}
}
2025-01-28 14:19:55 +00:00
}