Files
rn-app/app.json

40 lines
958 B
JSON
Raw Normal View History

2025-11-04 13:27:19 +08:00
{
"expo": {
"name": "rn-demo",
"slug": "rn-demo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "rndemo",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.rndemo.app"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"package": "com.rndemo.app"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
2025-11-06 22:19:21 +08:00
"plugins": ["expo-router"],
2025-11-04 13:27:19 +08:00
"experiments": {
"typedRoutes": true
}
}
}