-
Notifications
You must be signed in to change notification settings - Fork 39
/
app.json
94 lines (94 loc) · 3.13 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"expo": {
"name": "Papillon",
"slug": "papillonvex",
"scheme": "papillon",
"version": "7.4.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"primaryColor": "#32AB8E",
"splash": {
"image": "./assets/launch/splash.png",
"resizeMode": "cover",
"backgroundColor": "#32AB8E"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"appStoreUrl": "https://apps.apple.com/us/app/papillon-lappli-scolaire/id6477761165",
"bundleIdentifier": "xyz.getpapillon.ios",
"associatedDomains": ["applinks:getpapillon.xyz"],
"splash": {
"backgroundColor": "#32AB8E",
"image": "./assets/launch/splash.png",
"resizeMode": "cover",
"dark": {
"backgroundColor": "#001C0F",
"image": "./assets/launch/splash-dark.png",
"resizeMode": "cover"
}
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"playStoreUrl": "https://play.google.com/store/apps/details?id=xyz.getpapillon.app",
"adaptiveIcon": {
"foregroundImage": "./assets/launch/adaptive-icon-foreground.png",
"backgroundImage": "./assets/launch/adaptive-icon-background.png",
"monochromeImage": "./assets/launch/adaptive-icon-monochrome.png",
"backgroundColor": "#32AB8E"
},
"splash": {
"backgroundColor": "#32AB8E",
"image": "./assets/launch/splash.png",
"resizeMode": "cover",
"dark": {
"backgroundColor": "#001C0F",
"image": "./assets/launch/splash-dark.png",
"resizeMode": "cover"
}
},
"package": "xyz.getpapillon.app",
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
]
},
"plugins": [
"expo-font",
"expo-barcode-scanner",
[
"expo-location",
{
"locationWhenInUsePermission": "Papillon utilise ton emplacement pour trouver les établissements autour de toi.",
"cameraPermission": "Papillon utilise ta caméra pour scanner des QR-codes pour vous connecter, pour capturer des documents, ou pour des fonctionnalités amusantes telles que les réaction."
}
],
[
"expo-camera",
{
"cameraPermission": "Papillon utilise ta caméra pour scanner des QR-codes pour vous connecter, pour capturer des documents, ou pour des fonctionnalités amusantes telles que les réaction.",
"microphonePermission": "Papillon utilise ton micro pour enregistrer des travaux audio ou des cours.",
"recordAudioAndroid": true
}
],
[
"expo-sensors",
{
"motionPermission": "Papillon utilise les capteurs de mouvement de ton appareil pour de nombreuses fonctionnalités interactives."
}
],
[
"expo-image-picker",
{
"photosPermission": "Papillon utilise tes photos et vidéos pour personnaliser ton profil, ta gestion des cours et bien plus."
}
]
]
}
}