-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
117 lines (117 loc) · 3.72 KB
/
app.json
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
107
108
109
110
111
112
113
114
115
116
117
{
"expo": {
"name": "필봄",
"owner": "onehunnit",
"slug": "fillbom-front",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/images/png/icon.png",
"scheme": "onehunnit",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./src/assets/images/png/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"usesAppleSignIn": true,
"supportsTablet": true,
"bundleIdentifier": "com.onehunnit.fillbom",
"googleServicesFile": "./GoogleService-Info.plist",
"UIBackgroundModes": ["location", "fetch", "location", "fetch"],
"NSLocationAlwaysAndWhenInUseUsageDescription": "Allow $(PRODUCT_NAME) to access your location both while the app is in use and in the background.",
"NSLocationAlwaysUsageDescription": "Allow $(PRODUCT_NAME) to access your location even when the app is in the background.",
"NSLocationWhenInUseUsageDescription": "Allow $(PRODUCT_NAME) to access your location while the app is in use.",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"jsEngine": "hermes",
"package": "com.onehunnit.fillbom",
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/png/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"googleServicesFile": "./google-services.json",
"permissions": [
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_LOCATION",
"android.permission.ACCESS_BACKGROUND_LOCATION",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_BACKGROUND_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_LOCATION",
"android.permission.RECORD_AUDIO"
]
},
"plugins": [
"expo-router",
"@react-native-firebase/app",
"expo-apple-authentication",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location.",
"isAndroidBackgroundLocationEnabled": true,
"isIosBackgroundLocationEnabled": true,
"isAndroidForegroundServiceEnabled": true
}
],
[
"@react-native-seoul/kakao-login",
{
"kakaoAppKey": "7a1386dec3a034667c730827382adec0",
"kotlinVersion": "1.9.0"
}
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
},
"android": {
"extraMavenRepos": [
"https://devrepo.kakao.com/nexus/content/groups/public/",
"https://repository.map.naver.com/archive/maven"
],
"enableProguardInReleaseBuilds": false
}
}
],
[
"@mj-studio/react-native-naver-map",
{
"client_id": "o5kpxrwc84"
}
],
[
"expo-image-picker",
{
"photosPermission": "프로필 사진 업로드를 위해 앨범 접근 권한이 필요합니다.",
"cameraPermission": "프로필 사진 업로드를 위해 카메라 접근 권한이 필요합니다."
}
],
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "fillbom",
"organization": "one-hunnit"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "8874d96f-a2d2-4307-ab15-2280f7eb0f7f"
}
}
}
}