-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
58 lines (58 loc) · 1.47 KB
/
app.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"expo": {
"name": "빼곡",
"slug": "app",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/images/logoForIOS.png",
"scheme": "bbaegok",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/logo.png",
"resizeMode": "cover",
"backgroundColor": "#EEEDEB"
},
"ios": {
"icon": {
"dark": "./assets/images/logoForIOS.png",
"light": "./assets/images/logoForIOS.png",
"tinted": "./assets/images/logoForIOS.png"
},
"supportsTablet": false,
"bundleIdentifier": "com.bbaegok.app",
"buildNumber": "1.0.1",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSPushNotificationsUsageDescription": "매주 읽은 책을 기록할 수 있도록 알림을 보내드립니다.",
"LSApplicationQueriesSchemes": ["kakaotalk", "kakaolink", "naversearchapp", "instagram"]
}
},
"android": {
"package": "bbaegok.app",
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "kakaotalk"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"plugins": ["expo-router"],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "66be81d8-1ef2-4252-9be3-d9e376592645"
}
}
}
}