-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
105 lines (105 loc) · 2.59 KB
/
app.json
File metadata and controls
105 lines (105 loc) · 2.59 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"expo": {
"name": "Starr",
"slug": "starr-wallet",
"owner": "jspeigner",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "starr",
"userInterfaceStyle": "automatic",
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.starwallet",
"buildNumber": "2",
"infoPlist": {
"NSCameraUsageDescription": "Starr needs camera access to scan QR codes for Lightning payments",
"NSFaceIDUsageDescription": "Allow Starr to use Face ID for secure authentication",
"ITSAppUsesNonExemptEncryption": false
},
"appleTeamId": "3M4KWD4BUU"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#1a0a2e"
},
"package": "com.starrwallet",
"permissions": [
"CAMERA",
"USE_BIOMETRIC",
"USE_FINGERPRINT",
"INTERNET",
"ACCESS_NETWORK_STATE",
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/favicon.png"
},
"plugins": [
"@breeztech/breez-sdk-spark-react-native",
"expo-dev-client",
"expo-router",
"expo-secure-store",
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "16.0"
},
"android": {
"kotlinVersion": "2.1.20",
"minSdkVersion": 26
}
}
],
[
"expo-camera",
{
"cameraPermission": "Allow Starr to access your camera to scan QR codes"
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow Starr to use Face ID for secure authentication"
}
],
"@react-native-async-storage/expo-with-async-storage",
[
"expo-splash-screen",
{
"image": "./assets/splash-icon.png",
"imageWidth": 200,
"backgroundColor": "#FFFFFF",
"dark": {
"image": "./assets/splash-icon-dark.png",
"backgroundColor": "#000000"
}
}
],
"expo-asset",
"expo-font"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "33ff6a1d-a370-4804-847c-f61ec945b0e2"
}
}
}
}