kintex/mobile/app.json
zio 0933dbea41 feat(mobile): B2C visitor tab, congestion pill, live notice feed, ticket wallet, brand logo (v0.2.2 prep)
- (visitor) route group, visitor lib, tickets wallet
- CongestionPill + LiveNoticeFeed components
- login/tickets screens, i18n 4 locales, wordmark assets, splash

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-24 00:41:57 +09:00

100 lines
2.6 KiB
JSON

{
"expo": {
"name": "KINTEX AI 전시관리",
"slug": "kintex",
"owner": "zioinfo",
"scheme": "kintex",
"version": "0.2.2",
"orientation": "portrait",
"userInterfaceStyle": "light",
"jsEngine": "hermes",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#004C86"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "kr.co.zioinfo.kintex",
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": false
}
}
},
"android": {
"package": "kr.co.zioinfo.kintex",
"versionCode": 4,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0066B3"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"android.permission.READ_MEDIA_IMAGES"
],
"blockedPermissions": [
"android.permission.RECORD_AUDIO",
"android.permission.READ_MEDIA_VIDEO",
"android.permission.ACCESS_MEDIA_LOCATION",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
]
},
"web": {
"bundler": "metro",
"output": "single",
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-font",
[
"expo-image-picker",
{
"photosPermission": "프로필 사진 등록을 위해 사진 보관함 접근이 필요합니다.",
"cameraPermission": "프로필 사진 촬영을 위해 카메라 접근이 필요합니다."
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "생체인식 잠금 해제를 위해 Face ID 사용이 필요합니다."
}
],
[
"expo-build-properties",
{
"android": {
"enableProguardInReleaseBuilds": true,
"enableShrinkResources": true,
"usesCleartextTraffic": false
},
"ios": {}
}
]
],
"experiments": {
"typedRoutes": false
},
"extra": {
"apiBase": "https://kintex.zioinfo.co.kr",
"router": {
"origin": false
},
"eas": {
"projectId": "80b0a6ae-a2f6-4a25-8a9e-daa666543647"
}
}
}
}