-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
71 lines (71 loc) · 1.8 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
{
"expo": {
"name": "Alby Go",
"slug": "alby-mobile",
"version": "1.7.1",
"scheme": ["lightning", "bitcoin", "alby"],
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#0F0C40"
},
"assetBundlePatterns": ["**/*"],
"plugins": [
[
"expo-local-authentication",
{
"faceIDPermission": "Allow Alby Go to use Face ID."
}
],
[
"expo-camera",
{
"cameraPermission": "Allow Alby Go to use the camera to scan wallet connection and payment QR codes",
"recordAudioAndroid": false
}
],
[
"expo-font",
{
"fonts": [
"./assets/fonts/OpenRunde-Regular.otf",
"./assets/fonts/OpenRunde-Medium.otf",
"./assets/fonts/OpenRunde-Semibold.otf",
"./assets/fonts/OpenRunde-Bold.otf"
]
}
],
"expo-router",
"expo-secure-store"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.getalby.mobile",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"LSMinimumSystemVersion": "12.0"
}
},
"android": {
"package": "com.getalby.mobile",
"icon": "./assets/icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundImage": "./assets/adaptive-icon-bg.png",
"monochromeImage": "./assets/monochromatic.png"
},
"permissions": ["android.permission.CAMERA"]
},
"extra": {
"eas": {
"projectId": "294965ec-3a67-4994-8794-5cc1117ef155"
}
},
"owner": "roland_alby"
}
}