-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
60 lines (60 loc) · 1.69 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
{
"expo": {
"scheme": "your-app-scheme",
"name": "weekplan",
"slug": "weekplan",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.girafsvenner.ugeplan",
"usesBroadcastPushNotifications": false,
"infoPlist": {
"NSCameraUsageDescription": "GIRAF Weekplan bruger kameraadgang til at tage billeder til profilbilleder eller til at uploade billeder for din organisation.",
"NSPhotoLibraryUsageDescription": "GIRAF Weekplan bruger adgang til dit fotobibliotek for at vælge billeder til profilbilleder eller til at uploade billeder for din organisation."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#ffffff"
},
"permissions": ["android.permission.RECORD_AUDIO"],
"package": "com.girafsvenner.ugeplan"
},
"plugins": [
"expo-router",
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to get pictures for the weekplans"
}
],
[
"expo-secure-store",
{
"faceIDPermission": "Allow weekplanner to access your Face ID biometric data."
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "6d78d9b1-dfb5-4ace-8a66-9956e42d069e"
}
}
}
}