app.json 기본 설정
{
"expo": {
"name": "my-app",
"slug": "my-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}
portrait
| landscape
| default(자동)
light
| dark
스플래시 화면 설정을 포함하는 객체
image
: 앱이 로딩되는 사이 사용자에게 보여지는 이미지resizeMode
: 이미지의 크기 조정 모드.cover
| contain
| stretch
| repeat
| center
backgroundColor
: 기본 바탕색 설정supportsTablet
: 태블릿 지원여부adaptiveIcon
: Android 앱 아이콘 설정favicon
: (웹) 파비콘 파일 경로