-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
44 lines (44 loc) · 1.04 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
{
"expo": {
"name": "SANDBOX",
"slug": "sandbox",
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": ["ios", "android"],
"version": "3.0",
"orientation": "portrait",
"icon": "./assets/images/app-icon.png",
"splash": {
"image": "./assets/images/SplashScreen.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff",
"width": 200,
"height": 200
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.applab.sandbox",
"buildNumber": "4",
"config": {
"googleMapsApiKey": "AIzaSyBbCT3VbLTN04rhXpzuJ6_WUqwjJoNBeTg"
}
},
"android": {
"package": "app.sandbox",
"versionCode": 1,
"icon": "./assets/images/app-icon.png",
"config": {
"googleMaps": {
"apiKey": "AIzaSyBxW-gbbFLfn7dSfv0BGkmTPFALXwIErfY"
}
}
},
"notification":{
"icon": "./assets/images/app-icon.png"
}
}
}