-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
70 lines (70 loc) · 1.82 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": {
"name": "SecondLife",
"slug": "secondlife",
"platforms": ["ios", "android", "web"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./app/assets/AppIcon.png",
"userInterfaceStyle": "light",
"jsEngine": "hermes",
"splash": {
"image": "./app/assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#2A2A2A"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.mahi_kr.secondlife",
"buildNumber": "1.0.0"
},
"android": {
"useNextNotificationsApi": true,
"androidDisplayInForeground": true,
"adaptiveIcon": {
"foregroundImage": "./app/assets/AppIcon.png",
"backgroundColor": "#2A2A2A"
},
"package": "com.mahi_kr.secondlife",
"versionCode": 1
},
"web": {
"favicon": "./app/assets/AppIcon.png"
},
"extra": {
"eas": {
"projectId": "d0f4a173-2a5d-43c3-a7bf-3030a424a6a2"
},
"bugsnag": {
"apiKey": "4c96e79a93549fc42a60002fa95eee73"
}
},
"owner": "mahi_kr",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/d0f4a173-2a5d-43c3-a7bf-3030a424a6a2"
},
"plugins": ["expo-secure-store"],
"hooks": {
"postPublish": [
{
"file": "@bugsnag/expo/hooks/post-publish.js",
"config": {}
}
]
},
"description": "An app to help you give u'r items a second life.",
"privacy": "public",
"notification": {
"icon": "./app/assets/AppIcon.png",
"color": "#2A2A2A",
"androidMode": "collapse",
"androidCollapsedTitle": "SecondLife",
"androidCollapsedBody": "You have $notif_count new notifications",
"iosDisplayInForeground": true
}
}
}