-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
64 lines (64 loc) · 1.48 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
{
"expo": {
"name": "Trena",
"slug": "trena",
"privacy": "public",
"scheme": "trena",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./app/assets/logo-trena.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./app/assets/splash-trena.jpg",
"resizeMode": "cover",
"backgroundColor": "#000"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.george.trena",
"buildNumber": "1.0.0"
},
"android": {
"softwareKeyboardLayoutMode": "pan",
"adaptiveIcon": {
"foregroundImage": "./app/assets/logo-trena.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.george.trena",
"versionCode": 1
},
"web": {
"favicon": "./app/assets/logo-trena.png"
},
"description": "Aplicativo do MPMG para vistorias e acompanhamento de obras públicas",
"plugins": [
[
"expo-notifications",
{
"icon": "./app/assets/logo-trena.png",
"color": "#73FF00"
}
]
],
"extra": {
"bugsnag": {
"apiKey": "e37a2387dade04f2a67e08b1742f2cc0"
},
"eas": {
"projectId": "457d08a2-b855-4c79-b936-73cfe03e4d61"
}
},
"hooks": {
"postPublish": [
{
"file": "@bugsnag/expo/hooks/post-publish.js",
"config": {}
}
]
}
}
}