-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
41 lines (41 loc) · 866 Bytes
/
app.json
File metadata and controls
41 lines (41 loc) · 866 Bytes
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
{
"expo": {
"name": "Plantiful",
"slug": "Plantiful",
"platforms": [
"ios",
"android"
],
"version": "0.0.1",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.devkarlos.Plantiful"
},
"plugins": [
"expo-localization",
"expo-font"
],
"extra": {
"eas": {
"projectId": "2c09fd1e-edc9-4326-b2ec-2a58554a60e9"
}
}
}
}