-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
65 lines (64 loc) · 1.68 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
65
{
"expo": {
"name": "Intégration UTC",
"slug": "App_integ_2021",
"version": "2.0.4",
"orientation": "portrait",
"icon": "./assets/integ_logo_ios.png",
"userInterfaceStyle":"light",
"splash": {
"image": "./assets/splash_integ.png",
"resizeMode": "contain",
"backgroundColor": "#121212"
},
"androidStatusBar": {
"backgroundColor": "#121212",
"translucent": false,
"barStyle":"light-content"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"icon":"./assets/integ_logo_ios.png",
"supportsTablet": true,
"userInterfaceStyle": "light",
"infoPlist": {
"UIUserInterfaceStyle": "Light",
"NSPhotoLibraryUsageDescription": "Cette application nécessite l'autorisation d'accéder à votre bibliothèque de photos afin de vous permettre d'envoyer la vidéo de votre choix sur nos serveurs"
},
"bundleIdentifier":"com.utcintegration.integration2020",
"config":{
"googleMapsApiKey":"IOS-MAPS-API-KEY"
}
},
"android": {
"package":"fr.utc.integration",
"versionCode":5,
"adaptiveIcon": {
"foregroundImage": "./assets/integ_logo.png",
"backgroundColor": "#fc68b1"
},
"icon":"./assets/integ_logo_ios.png",
"userInterfaceStyle": "light",
"config":{
"googleMaps":{
"apiKey":"ANDROID-MAPS-API-KEY"
}
}
},
"web": {
"favicon": "./assets/integ_logo.png",
"build": {
"babel": {
"include": [
"rn-weblineindia-number-input"
]
}
}
}
}
}