-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
75 lines (75 loc) · 2.21 KB
/
app.config.js
File metadata and controls
75 lines (75 loc) · 2.21 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
export default {
"expo": {
"name": "Congregation Planner",
"slug": "congregation_planner",
"version": "4.2.1",
"owner": "miszki",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/mysplash.png",
"resizeMode": "contain",
"backgroundColor": "#1F8AAD"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.miszki.congregation-planner",
"infoPlist": {
"NSCalendarsUsageDescription": "Ta aplikacja do przydatnych dla Ciebie funkcji potrzebuje dostępu do kalendarza",
"NSRemindersUsageDescription": "Pozwól $(PRODUCT_NAME) na dostęp do przypomnień",
"NSCalendarsFullAccessUsageDescription": "Ta aplikacja do przydatnych dla Ciebie funkcji potrzebuje dostępu do kalendarza",
"NSRemindersFullAccessUsageDescription": "Pozwól $(PRODUCT_NAME) na dostęp do przypomnień",
"NSFaceIDUsageDescription": "Pozwól $(PRODUCT_NAME) na używanie Face ID.",
"UIBackgroundModes": ["remote-notification"]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#1F8AAD"
},
"permissions": [
"android.permission.READ_CALENDAR",
"android.permission.WRITE_CALENDAR",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"com.google.android.gms.permission.AD_ID"
],
"package": "com.crazydev09.congregation_planner",
"versionCode": 48,
"googleServicesFile": process.env.GOOGLE_SERVICES_JSON
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-font",
[
"expo-calendar",
],
"expo-localization",
[
"expo-notifications",
{
"icon": "./assets/icon.png"
}
]
],
"extra": {
"eas": {
"projectId": "945eed66-9302-4d9e-a573-94f7d5ba939b"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/945eed66-9302-4d9e-a573-94f7d5ba939b"
}
}
}