-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
93 lines (93 loc) · 2.57 KB
/
app.json
File metadata and controls
93 lines (93 loc) · 2.57 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
{
"expo": {
"name": "BitSleuth Wallet",
"slug": "bitsleuth-wallet",
"version": "1.2.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0F172A"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "ai.bitsleuth.wallet",
"buildNumber": "1",
"googleServicesFile": "./GoogleService-Info.plist",
"infoPlist": {
"NSCameraUsageDescription": "Allow $(PRODUCT_NAME) to access your camera",
"NSMicrophoneUsageDescription": "Allow $(PRODUCT_NAME) to access your microphone",
"NSFaceIDUsageDescription": "Allow $(PRODUCT_NAME) to use Face ID.",
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#0F172A"
},
"package": "ai.bitsleuth.wallet",
"googleServicesFile": "./google-services.json",
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.VIBRATE",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT"
]
},
"plugins": [
"expo-router",
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera",
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone",
"recordAudioAndroid": true
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to use Face ID."
}
],
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"minSdkVersion": 24,
"javaVersion": "17"
},
"ios": {
"useFrameworks": "static",
"podfileProperties": {
"use_modular_headers!": true
}
}
}
],
"@react-native-firebase/app",
"@react-native-firebase/crashlytics",
"@react-native-firebase/perf",
"expo-asset",
"expo-secure-store",
"expo-web-browser"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "d9e4224e-8289-45e2-92d4-39c45c34ff2e"
}
},
"owner": "bitsleuth"
}
}