generated from Valeriy-Burlaka/react-native-expo-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1003 Bytes
/
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
{
"expo": {
"name": "rn-taskbox",
"slug": "rn-taskbox",
"owner": "val-bu",
"privacy": "public",
"version": "0.0.1",
"orientation": "portrait",
"icon": "./app/assets/images/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./app/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.val-bu.rn-taskbox",
"jsEngine": "hermes"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./app/assets/images/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.valbu.rntaskbox"
},
"web": {
"favicon": "./app/assets/images/favicon.png"
},
"extra": {
"eas": {
"projectId": "ed19d8a7-3929-4ae6-a425-8c9b26671138"
}
}
}
}