-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
53 lines (53 loc) · 1.25 KB
/
app.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"expo": {
"name": "origin",
"slug": "origin",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "origin",
"userInterfaceStyle": "automatic",
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.variance.origin"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.variance.origin",
"permissions": ["android.permission.NFC"]
},
"plugins": [
"expo-router",
"expo-font",
[
"expo-secure-store",
{
"faceIDPermission": "Allow Origin to authenticate with Face ID."
}
],
"react-native-nfc-manager",
["react-native-bootsplash", { "assetsDir": "assets/bootsplash" }],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow Origin to use Face ID."
}
]
],
"autolinking": {
"exclude": ["expo-splash-screen"]
},
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "ce5c1c25-f56c-4063-a3dc-691c46b384dc"
}
}
}
}