-
Notifications
You must be signed in to change notification settings - Fork 29
/
app.json
94 lines (94 loc) · 2.26 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"displayName": "Learner Credential Wallet",
"expo": {
"runtimeVersion": "2.1.4",
"version": "2.1.4",
"name": "Learner Credential Wallet",
"slug": "learner-credential-wallet",
"orientation": "portrait",
"icon": "./app/assets/icon.png",
"backgroundColor": "#1F2937",
"splash": {
"image": "./app/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#1F2937"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"buildNumber": "84",
"supportsTablet": true,
"bundleIdentifier": "edu.mit.eduwallet",
"deploymentTarget": "13.0",
"entitlements": {
"com.apple.security.application-groups": [
"group.edu.mit.eduwallet"
]
},
"associatedDomains": ["applinks:lcw.app/mobile"],
"infoPlist": {
"CFBundleURLTypes": [
{
"CFBundleURLSchemes": ["dccrequest"]
}
]
}
},
"android": {
"versionCode": 84,
"adaptiveIcon": {
"foregroundImage": "./app/assets/adaptive-icon.png",
"backgroundColor": "#1F2937"
},
"intentFilters": [
{
"action": "VIEW",
"autoVerify": false,
"data": [
{
"scheme": "dccrequest",
"host": "request"
},
{
"scheme": "dccrequest",
"host": "present"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
],
"package": "app.lcw"
},
"web": {
"favicon": "./app/assets/favicon.png"
},
"plugins": [
[
"react-native-vision-camera",
{
"cameraPermissionText": "$(PRODUCT_NAME) needs access to your Camera to scan QR codes.",
"enableMicrophonePermission": false,
"enableCodeScanner": true
}
],
[
"expo-build-properties",
{
"android": {
"packagingOptions": {
"pickFirst": ["**/libcrypto.so"]
},
"compileSdkVersion": 34,
"targetSdkVersion": 34,
"minSdkVersion": 34,
"buildToolsVersion": "34.0.0"
}
}
]
]
}
}