-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
71 lines (71 loc) · 1.91 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
{
"expo": {
"name": "TIHLDE",
"slug": "TIHLDE",
"privacy": "public",
"sdkVersion": "36.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/tihlde_splash.png",
"resizeMode": "contain",
"backgroundColor": "#1D448C"
},
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"./assets/images/*"
],
"ios": {
"buildNumber": "3",
"bundleIdentifier": "org.tihlde.tihlde",
"supportsTablet": true,
"requireFullScreen": false,
"infoPlist": {
"NSCameraUsageDescription": "TIHLDE-appen bruker kamera for å skanne QR-koder ved arrangementer"
},
"icon": "./assets/images/icon_ios.png"
},
"android": {
"versionCode": 3,
"package": "org.tihlde.tihlde",
"permissions": [
"CAMERA"
],
"adaptiveIcon": {
"foregroundImage": "./assets/images/tihlde_logo_foreground.png",
"backgroundColor": "#1D448C"
}
},
"description": "TIHDLE's egen app! Her kan du melde deg av og på arrangementer, samt bruke medlemsbeviset til å komme raskere inn på våre arrangementer.",
"backgroundColor": "#ffffff",
"primaryColor": "#1D448C",
"scheme": "tihlde",
"notification": {
"icon": "./assets/images/tihlde_logo_gray.png",
"color": "#000000",
"iosDisplayInForeground": true,
"androidMode": "default"
},
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "tihlde",
"project": "app",
"authToken": "ee80378f48004df7a5a54c67b2512b6718a20c231f934b2bb2ba408f4237c1e1"
}
}
]
}
}
}