-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
104 lines (104 loc) · 2.7 KB
/
Copy pathapp.json
File metadata and controls
104 lines (104 loc) · 2.7 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
{
"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": "지도에서 내 위치를 표시하기 위해 위치 권한이 필요합니다.",
"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"
}
}
}