-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
94 lines (94 loc) · 3.06 KB
/
Copy pathapp.json
File metadata and controls
94 lines (94 loc) · 3.06 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
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": "Better Invaders",
"slug": "better-invaders",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"backgroundColor": "#101214",
"scheme": "betterinvaders",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "art.betterinvaders.app",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "L'app utilise ta position pour te montrer les Space Invaders les plus proches et le mode boussole.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "L'app utilise ta position en arrière-plan uniquement si tu actives les alertes d'Invaders à proximité.",
"NSCameraUsageDescription": "L'app utilise l'appareil photo pour prendre une photo perso quand tu flashes un Space Invader.",
"NSPhotoLibraryUsageDescription": "L'app accède aux médias choisis pour importer ta collection ou joindre une photo à un Invader.",
"LSApplicationQueriesSchemes": [
"flashinvaders",
"flashinvader"
]
}
},
"android": {
"package": "art.betterinvaders.app",
"adaptiveIcon": {
"backgroundColor": "#101214",
"foregroundImage": "./assets/android-icon-foreground.png"
},
"predictiveBackGestureEnabled": false,
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-location",
{
"locationWhenInUsePermission": "L'app utilise ta position pour te montrer les Space Invaders les plus proches et le mode boussole.",
"locationAlwaysAndWhenInUsePermission": "L'app utilise ta position en arrière-plan uniquement si tu actives les alertes d'Invaders à proximité.",
"isIosBackgroundLocationEnabled": true,
"isAndroidBackgroundLocationEnabled": true,
"isAndroidForegroundServiceEnabled": true
}
],
"./plugins/with-local-notifications",
[
"expo-notifications",
{
"color": "#43D9BD",
"defaultChannel": "nearby-invaders"
}
],
[
"expo-image-picker",
{
"cameraPermission": "L'app utilise l'appareil photo pour prendre une photo perso quand tu flashes un Space Invader."
}
],
"expo-font",
[
"expo-splash-screen",
{
"image": "./assets/splash-icon.png",
"imageWidth": 220,
"resizeMode": "contain",
"backgroundColor": "#101214",
"dark": {
"image": "./assets/splash-icon.png",
"backgroundColor": "#101214"
}
}
]
],
"extra": {
"router": {},
"eas": {
"projectId": "f5c3b525-cfe1-43e1-8055-25e66ee38af1"
}
},
"owner": "gniaxx"
}
}