-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.json
More file actions
72 lines (72 loc) · 1.76 KB
/
app.json
File metadata and controls
72 lines (72 loc) · 1.76 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
{
"expo": {
"name": "BP Passport",
"slug": "bp-passport",
"version": "1.22",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"scheme": "bp-passport",
"plugins": [
[
"expo-barcode-scanner",
{
"cameraPermission": "To enable QR code scan and login with a BP Passport account"
}
],
"expo-localization",
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 35,
"targetSdkVersion": 35
},
"ios": {
"useFrameworks": "static"
}
}
]
],
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0C3966"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"buildNumber": "526",
"bundleIdentifier": "org.simple.bppassport",
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "To enable QR code scan and login with a BP Passport account"
}
},
"android": {
"versionCode": "526",
"package": "org.simple.bppassport",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0C3966"
},
"icon": "./assets/icon.png",
"useNextNotificationsApi": true
},
"notification": {
"icon": "./assets/notification-icon.png",
"color": "#FF3355",
"iosDisplayInForeground": true,
"androidMode": "default",
"androidCollapsedTitle": "BP Passport"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "fc0becd5-0392-4d5a-81d0-73f25d294dbd"
}
},
"owner": "asquared"
}
}