-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
57 lines (57 loc) · 1.34 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
{
"expo": {
"name": "Naao",
"description": "Get your package delivered with a personal touch.",
"slug": "naao",
"privacy": "public",
"sdkVersion": "31.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/naaoandroid.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#232937"
},
"updates": {
"enabled": true,
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"buildNumber": "1.0.5",
"icon": "./assets/naaoios.png",
"bundleIdentifier": "com.bdgeeks.naao"
},
"android": {
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.bdgeeks.naao",
"icon": "./assets/naaoandroid.png",
"package": "com.bdgeeks.naao",
"versionCode": 105,
"permissions": [
"CAMERA", "CAMERA_ROLL", "WRITE_EXTERNAL_STORAGE"
],
"config": {
"googleMaps": {
"apiKey": ""
}
}
},
"androidStatusBar": {
"backgroundColor": "#232937",
"barStyle": "light-content"
},
"notification": {
"icon": "./assets/noti.icon.png",
"androidMode": "collapse",
"color": "#232937"
}
}
}