-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
106 lines (106 loc) · 3.25 KB
/
Copy pathapp.json
File metadata and controls
106 lines (106 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"expo": {
"name": "A:SSU",
"slug": "ASSU_FE_RN",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/shared/assets/images/icon.png",
"scheme": "assu-app",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.ssu.assu.app",
"googleServicesFile": "./GoogleService-Info.plist",
"infoPlist": {
"NSCameraUsageDescription": "제휴 매장의 QR 코드를 스캔하기 위해 카메라 권한이 필요합니다.",
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"NSLocationWhenInUseUsageDescription": "현재 위치를 사용해 지도에 내 위치와 주변 제휴 매장을 표시하고, 선택한 매장까지의 거리를 안내합니다.",
"NSPhotoLibraryUsageDescription": "프로필 사진과 제휴 매장 리뷰 사진 등록, 회원가입 시 사업자등록증·인감 이미지 첨부를 위해 사진 보관함에 접근합니다. 사용자가 선택한 이미지를 앱에 업로드합니다.",
"NSPhotoLibraryAddUsageDescription": "‘QR 저장하기’를 누르면 제휴 QR 코드 이미지를 사진 보관함에 저장합니다. 저장한 이미지는 매장 안내 포스터 제작에 사용할 수 있습니다.",
"ITSAppUsesNonExemptEncryption": false,
"UIBackgroundModes": ["remote-notification"]
},
"entitlements": {
"aps-environment": "production"
}
},
"android": {
"googleServicesFile": "./google-services.json",
"package": "com.ssu.assu",
"permissions": [
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.CAMERA"
],
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./src/shared/assets/images/android-icon-foreground.png",
"backgroundImage": "./src/shared/assets/images/android-icon-background.png",
"monochromeImage": "./src/shared/assets/images/android-icon-monochrome.png"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./src/shared/assets/images/favicon.png"
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/messaging",
"expo-router",
[
"expo-camera",
{
"cameraPermission": "제휴 매장의 QR 코드를 스캔하기 위해 카메라 권한이 필요합니다.",
"recordAudioAndroid": false
}
],
"expo-document-picker",
[
"expo-splash-screen",
{
"image": "./src/shared/assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"backgroundColor": "#000000"
}
}
],
"@react-native-community/datetimepicker",
"expo-web-browser",
"expo-secure-store",
"expo-font",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static",
"forceStaticLinking": ["RNFBApp", "RNFBMessaging"]
}
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "208b20f1-a887-4fff-a0ac-9633a2a9ed8e"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/208b20f1-a887-4fff-a0ac-9633a2a9ed8e"
}
}
}