-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
70 lines (70 loc) · 1.58 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
{
"expo": {
"jsEngine": "hermes",
"name": "PiCK",
"slug": "PICK",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./app/assets/images/Logo.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./app/assets/images/Logo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"js",
"jsx",
"svg"
]
},
"plugins": [
[
"expo-font",
{
"fonts": [
"./app/assets/font/Medium.ttf",
"./app/assets/font/Regular.ttf",
"./app/assets/font/SemiBold.ttf"
]
}
],
[
"expo-image-picker",
{
"photosPermission": "프로필 사진 변경 및 버그 제보 이미지 업로드에 사용됩니다."
}
],
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "pick-android",
"organization": "daedeok-software-meister-hi-76"
}
]
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./app/assets/images/Logo.png",
"backgroundColor": "#ffffff"
},
"googleServicesFile": "./google-services.json",
"package": "com.sevenstandard.PICK"
},
"extra": {
"eas": {
"projectId": "342bfabd-2278-47bd-9ac9-a10c9042ccb3"
}
},
"owner": "seven-standard",
"web": {
"favicon": "./assets/favicon.png"
}
}
}