forked from wcandillon/react-native-webgpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
49 lines (49 loc) · 1.04 KB
/
Copy pathapp.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "Example",
"displayName": "Example",
"singleApp": "example-app",
"components": [
{
"appKey": "Example",
"displayName": "Example",
"slug": "example-app"
}
],
"resources": {
"android": [
"dist/res"
],
"ios": [
"dist/assets",
"dist/main.ios.jsbundle"
],
"macos": [
"dist/assets",
"dist/main.macos.jsbundle"
],
"visionos": [
"dist/assets",
"dist/main.visionos.jsbundle"
]
},
"ios": {
"metalAPIValidation": false,
"infoPlist": {
"NSCameraUsageDescription": "$(PRODUCT_NAME) needs access to your Camera.",
"NSMicrophoneUsageDescription": "$(PRODUCT_NAME) needs access to your Microphone."
}
},
"android": {
"permissions": [
{ "android:name": "android.permission.INTERNET" },
{ "android:name": "android.permission.CAMERA" },
{ "android:name": "android.permission.RECORD_AUDIO" }
]
},
"macos": {
"metalAPIValidation": false
},
"visionos": {
"metalAPIValidation": false
}
}