-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
96 lines (96 loc) · 2.49 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
{
"expo": {
"name": "Onyx",
"slug": "onyx",
"scheme": "onyx",
"version": "0.1.0",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"icon": "./assets/images/app-icon-all.png",
"backgroundColor": "#000000",
"newArchEnabled": true,
"jsEngine": "hermes",
"assetBundlePatterns": [
"**/*"
],
"android": {
"icon": "./assets/images/app-icon-all.png",
"package": "com.openagents.onyx",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#000000"
},
"permissions": [
"RECORD_AUDIO",
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
]
},
"ios": {
"icon": "./assets/images/app-icon-all.png",
"supportsTablet": true,
"bundleIdentifier": "com.openagents.onyx",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#000000"
},
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSSpeechRecognitionUsageDescription": "Allow Onyx to securely recognize your speech",
"NSMicrophoneUsageDescription": "Allow Onyx to access your microphone for voice commands",
"NSPhotoLibraryUsageDescription": "Allow Onyx to access your photos for AI analysis."
}
},
"web": {
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"bundler": "metro"
},
"plugins": [
"expo-font",
[
"expo-secure-store",
{
"configureAndroidBackup": true,
"faceIDPermission": "Allow Onyx to access your Face ID biometric data."
}
],
[
"expo-av",
{
"microphonePermission": "Allow Onyx to access your microphone for voice recording."
}
],
[
"expo-splash-screen",
{
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
}
]
],
"experiments": {
"tsconfigPaths": true
},
"extra": {
"eas": {
"projectId": "69b52e85-13c8-439b-be19-8d2580e481fc"
}
},
"owner": "openagents",
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/69b52e85-13c8-439b-be19-8d2580e481fc"
}
}
}