Files
insurance/app.json
T
chpark 0a111c172f feat: 보험케어 앱 초기 구축 (React Native + Expo)
- 14개 핵심 기능 화면 구현 (진단/점수/청구/가족/AI판정 등)
- 하단 탭 5개 (홈/내보험/보험금/상담/마이) — 시그널플래너/보맵 참고
- 공용 컴포넌트, 테마 시스템, Zustand 전역 스토어
- Android/iOS/Web 크로스플랫폼 지원

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 23:54:38 +09:00

45 lines
1.2 KiB
JSON

{
"expo": {
"name": "보험케어",
"slug": "insurance-care",
"version": "1.0.0",
"orientation": "portrait",
"userInterfaceStyle": "light",
"splash": {
"resizeMode": "contain",
"backgroundColor": "#3B82F6"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.insurancecare.app",
"infoPlist": {
"NSCameraUsageDescription": "보험금 청구를 위한 영수증/진단서 촬영에 카메라가 사용됩니다.",
"NSPhotoLibraryUsageDescription": "보험금 청구 서류 첨부를 위해 사진 접근이 필요합니다."
}
},
"android": {
"package": "com.insurancecare.app",
"permissions": [
"CAMERA",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE",
"POST_NOTIFICATIONS"
]
},
"web": {
"bundler": "metro"
},
"plugins": [
[
"expo-image-picker",
{
"cameraPermission": "보험금 청구 시 영수증/진단서 촬영을 위해 카메라를 사용합니다.",
"photosPermission": "보험금 청구 서류 첨부를 위해 사진 접근이 필요합니다."
}
],
"expo-notifications"
]
}
}