-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
84 lines (84 loc) · 1.86 KB
/
app.json
File metadata and controls
84 lines (84 loc) · 1.86 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
76
77
78
79
80
81
82
83
84
{
"expo": {
"name": "zerocard",
"slug": "zerocard",
"version": "1.0.0",
"scheme": "zerocard",
"owner": "folajindayo",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/your-project-id",
"enabled": true,
"fallbackToCacheTimeout": 0
},
"web": {
"bundler": "metro",
"output": "static"
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-apple-authentication",
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.1"
},
"android": {
"compileSdkVersion": 34
}
}
],
"expo-barcode-scanner"
],
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"orientation": "portrait",
"icon": "./assets/base-logo-in-blue.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#f7f7f7"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"newArchEnabled": true,
"usesAppleSignIn": true,
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"ITSAppUsesNonExemptEncryption": false
},
"bundleIdentifier": "com.zerocard.zerocard"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/base-logo-in-blue.png",
"backgroundColor": "#ffffff"
},
"newArchEnabled": true,
"package": "com.zerocard.zerocard",
"permissions": [
"android.permission.CAMERA"
]
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "95e69556-dbf1-4c9c-9e13-cc8b86076f5d"
}
}
}
}