-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
103 lines (103 loc) · 2.2 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
95
96
97
98
99
100
101
102
103
{
"expo": {
"name": "Pallad",
"slug": "pallad",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"scheme": "pallad",
"userInterfaceStyle": "dark",
"owner": "palladians",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "co.pallad.wallet"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/adaptive.png",
"backgroundColor": "#ffffff"
},
"package": "co.pallad.wallet",
"permissions": [
"android.permission.BLUETOOTH",
"android.permission.BLUETOOTH_ADMIN",
"android.permission.BLUETOOTH_CONNECT",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./src/assets/favicon.png"
},
"plugins": [
"expo-router",
[
"react-native-ble-plx",
{
"isBackgroundEnabled": true,
"modes": ["peripheral", "central"],
"bluetoothAlwaysPermission": "Allow $(PRODUCT_NAME) to connect to bluetooth devices"
}
],
[
"expo-secure-store",
{
"faceIDPermission": "Allow Pallad to access your Face ID biometric data."
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow Pallad to use Face ID."
}
],
[
"expo-camera",
{
"cameraPermission": "Allow Pallad to access your camera",
"microphonePermission": "Allow Pallad to access your microphone",
"recordAudioAndroid": true
}
],
[
"expo-asset",
{
"assets": ["src/assets"]
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "4f6f0f30-a9d1-4cae-8dea-bee71a9f503c"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/148098d1-7e19-4326-9814-dd661a192776"
}
}
}