-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
89 lines (89 loc) · 2.29 KB
/
app.config.js
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
module.exports = {
expo: {
name: 'D-sektionen',
slug: 'dsek-app',
version: '2.0.1',
orientation: 'portrait',
icon: './assets/images/icon.png',
scheme: 'dsek',
userInterfaceStyle: 'automatic',
newArchEnabled: true,
splash: {
image: './assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#f280a1',
},
updates: {
fallbackToCacheTimeout: 0,
url: 'https://u.expo.dev/1e625b79-dfbd-4e9c-802f-3e8451ad87e6',
},
assetBundlePatterns: ['**/*'],
ios: {
bundleIdentifier: 'se.dsek.member',
supportsTablet: false,
infoPlist: {
NSCameraUsageDescription:
'Allow access to camera to take profile picture and upload photo to news articles.',
NSPhotoLibraryAddUsageDescription:
'Allow access to the photo library to save photos locally.',
NSPhotoLibraryUsageDescription:
'Allow access to photos to upload profile pictures or photos to news articles.',
},
associatedDomains: [
'applinks:dsek.se',
'applinks:www.dsek.se',
'webcredentials:dsek.se',
'webcredentials:www.dsek.se',
'webcredentials:portal.dsek.se',
],
bitcode: false,
},
android: {
package: 'se.dsek',
icon: './assets/images/icon.png',
adaptiveIcon: {
foregroundImage: './assets/images/adaptive-icon.png',
backgroundColor: '#f280a1',
},
googleServicesFile: process.env.GOOGLE_SERVICES_JSON || './google-services.json',
intentFilters: [
{
action: 'VIEW',
data: [
{
scheme: 'https',
host: 'www.dsek.se',
},
],
category: ['BROWSABLE', 'DEFAULT'],
},
],
},
web: {
favicon: './assets/images/favicon.png',
},
notification: {
icon: './assets/images/favicon.png',
color: '#f280a1',
},
plugins: [
[
'expo-notifications',
{
icon: './assets/images/favicon.png',
color: '#f280a1',
},
],
'expo-asset',
],
owner: 'd-sektionen',
extra: {
eas: {
projectId: '1e625b79-dfbd-4e9c-802f-3e8451ad87e6',
},
},
runtimeVersion: {
policy: 'sdkVersion',
},
},
};