-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (49 loc) · 1.14 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
{
"expo": {
"name": "Iluminando Vidas",
"slug": "iluminando-vidas",
"version": "1.0.2",
"orientation": "portrait",
"jsEngine": "hermes",
"icon": "./assets/images/logo.jpg",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/images/logo.jpg",
"resizeMode": "contain",
"backgroundColor": "#ff7f00"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"jsEngine": "jsc"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/logo.jpg",
"backgroundColor": "#ff7f00"
},
"permissions": ["android.permission.RECORD_AUDIO"],
"package": "com.ludcoll.iluminandovidas"
},
"web": {
"favicon": "./assets/images/logo.jpg"
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "Permita que o APP acesse sua galeria de fotos."
}
]
],
"packagerOpts": {
"config": "metro.config.js"
},
"sdkVersion": "51.0.0",
"extra": {
"eas": {
"projectId": "dedfe09d-7e1b-425c-ac55-a9d25757429d"
}
}
}
}