-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
86 lines (86 loc) · 2.38 KB
/
app.json
File metadata and controls
86 lines (86 loc) · 2.38 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
{
"expo": {
"name": "다시",
"slug": "dasii",
"version": "1.4.0",
"orientation": "portrait",
"icon": "./assets/images/img_logo.png",
"scheme": "dasii",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": false,
"buildNumber": "10",
"bundleIdentifier": "com.podostore.dasii",
"infoPlist": {
"NSUserTrackingUsageDescription": "맞춤형 콘텐츠/광고 및 앱 품질 개선을 위해 사용자 활동 데이터를 사용할 수 있도록 허용해 주세요.",
"NSCameraUsageDescription": "리뷰를 작성할 때 직접 촬영한 사진을 첨부하기 위해 카메라를 사용합니다.",
"NSPhotoLibraryUsageDescription": "리뷰 작성 시 기기에 저장된 사진을 선택해 첨부하기 위해 사진 보관함에 접근합니다."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/img_logo.png",
"backgroundColor": "#ffffff"
},
"blockedPermissions": ["com.google.android.gms.permission.AD_ID"],
"edgeToEdgeEnabled": true,
"package": "com.dasii"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/img_logo.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/img_splash.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
],
"expo-font",
"expo-web-browser",
"expo-secure-store",
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "react-native",
"organization": "dasii-qh"
}
],
[
"expo-build-properties",
{
"android": {
"extraMavenRepos": [
"https://devrepo.kakao.com/nexus/content/groups/public/"
]
},
"ios": {}
}
],
[
"@react-native-kakao/core",
{
"nativeAppKey": "099d2ee546346f7a39ba786148746199",
"android": {
"authCodeHandlerActivity": true
},
"ios": {
"handleKakaoOpenUrl": true
}
}
]
],
"experiments": {
"typedRoutes": true
},
"assetBundlePatterns": ["**/*"]
}
}