-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
53 lines (53 loc) · 1.22 KB
/
app.json
File metadata and controls
53 lines (53 loc) · 1.22 KB
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
{
"expo": {
"name": "Paris Masqué",
"slug": "paris-masque",
"version": "0.0.5",
"orientation": "portrait",
"icon": "./assets/icon.png",
"notification": {
"icon": "./assets/icon.png"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.zarcainc.parismasque",
"supportsTablet": false,
"infoPlist": {
"UIBackgroundModes": [
"location",
"fetch"
],
"NSLocationWhenInUseUsageDescription": "Paris Masqué vous protège."
},
"config": {
"googleMapsApiKey": "AIzaSyBuErk2_ht-65wQ3_I6ZCDj55WRYnP5q1E"
}
},
"android": {
"package": "com.zarcainc.parismasque",
"permissions": [
"NOTIFICATIONS",
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION"
],
"useNextNotificationsApi": true,
"versionCode": 5,
"config": {
"googleMaps": {
"apiKey": "AIzaSyCxfg89oY0hXRTV2rF1J46UItH-QIC39ko"
}
}
},
"description": ""
}
}