-
Notifications
You must be signed in to change notification settings - Fork 97
/
app.json
executable file
·43 lines (43 loc) · 1.05 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
{
"expo": {
"name": "react-native-boilerplate",
"slug": "react-native-boilerplate",
"owner": "wataru",
"newArchEnabled": true,
"version": "1.0.0",
"platforms": ["ios", "android", "web"],
"orientation": "portrait",
"icon": "src/assets/images/logo-lg.png",
"userInterfaceStyle": "light",
"splash": {
"image": "src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "src/assets/images/logo-sm.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "src/assets/images/logo-sm.png"
},
"extra": {
"eas": {
"projectId": "18adc0d0-eb1d-11e9-8009-d524ed5cc4a7"
}
},
"updates": {
"url": "https://u.expo.dev/18adc0d0-eb1d-11e9-8009-d524ed5cc4a7"
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"plugins": ["expo-asset", "expo-font"]
}
}