-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
109 lines (109 loc) · 3.08 KB
/
Copy pathapp.json
File metadata and controls
109 lines (109 loc) · 3.08 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
106
107
108
109
{
"expo": {
"name": "DevinX",
"slug": "devinx",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "devinx",
"userInterfaceStyle": "automatic",
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.fenner888.devinx",
"buildNumber": "79",
"infoPlist": {
"NSFileProtection": "NSFileProtectionComplete",
"NSCameraUsageDescription": "Allow DevinX to scan a pairing code shown by DevinX Connector.",
"NSMicrophoneUsageDescription": "DevinX uses the microphone to transcribe your voice into session prompts. Audio is processed entirely on your device and never uploaded.",
"NSLocalNetworkUsageDescription": "Allow DevinX to connect securely to a computer you approve in DevinX Connector.",
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": false,
"NSExceptionDomains": {
"100.64.0.0/10": {
"NSExceptionAllowsInsecureHTTPLoads": true
}
}
},
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"package": "com.fenner888.devinx",
"adaptiveIcon": {
"foregroundImage": "./assets/android-icon-foreground.png",
"backgroundColor": "#141414"
},
"permissions": ["android.permission.MODIFY_AUDIO_SETTINGS"]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-sqlite",
"expo-font",
[
"expo-splash-screen",
{
"image": "./assets/wordmark-light.png",
"imageWidth": 180,
"resizeMode": "contain",
"backgroundColor": "#FCFCFC",
"dark": {
"image": "./assets/wordmark.png",
"backgroundColor": "#000000"
}
}
],
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": true
},
"android": {
"newArchEnabled": true
}
}
],
"expo-web-browser",
"expo-video",
[
"expo-audio",
{
"microphonePermission": "DevinX uses the microphone to transcribe your voice into session prompts. Audio is processed entirely on your device and never uploaded."
}
],
"expo-asset",
[
"expo-image-picker",
{
"photosPermission": "Allow DevinX to attach photos and videos to Devin sessions.",
"cameraPermission": "Allow DevinX to scan a pairing code shown by DevinX Connector.",
"microphonePermission": false
}
]
],
"experiments": {
"tsconfigPaths": true
},
"extra": {
"eas": {
"projectId": "ca40fc46-e834-4b20-8214-a47de532a426"
},
"router": {
"origin": "devinx://"
}
},
"updates": {
"url": "https://u.expo.dev/ca40fc46-e834-4b20-8214-a47de532a426"
},
"runtimeVersion": {
"policy": "appVersion"
},
"owner": "fenner888"
}
}