-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
74 lines (74 loc) · 2.23 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
{
"expo": {
"name": "데일리 주가 맞추기",
"slug": "daily-stock-prediction",
"description": "매일 특정 종목이 오를지 내릴지 예측하는 게임",
"keywords": ["stock", "prediction", "finance", "데일리 주가"],
"version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0078D4"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.yeonchan.dailyStockPrediction",
"buildNumber": "1.1.0",
"infoPlist": {
"NSCameraUsageDescription": "이 앱은 사용자 프로필 사진 업로드에 카메라를 사용할 수 있습니다.",
"NSUserTrackingUsageDescription": "사용자 맞춤형 광고 제공을 위해 트래킹 권한이 필요합니다."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.yeonchan.dailyStockPrediction",
"versionCode": 2,
"permissions": ["CAMERA", "INTERNET"]
},
"web": {
"favicon": "./assets/favicon.png",
"themeColor": "#0078D4",
"backgroundColor": "#ffffff",
"manifest": {
"short_name": "주가 맞추기",
"name": "데일리 주가 맞추기",
"description": "매일 특정 종목이 오를지 내릴지 예측하는 PWA 앱",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"icons": [
{
"src": "./assets/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./assets/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
},
"extra": {
"eas": {
"projectId": "7c0d2a15-93d6-48ea-b73a-11e446ea908a"
}
},
"owner": "chomu8632",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/7c0d2a15-93d6-48ea-b73a-11e446ea908a"
},
"plugins": ["expo-dev-client"]
}
}