-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtauri.ios.conf.json
More file actions
48 lines (48 loc) · 1.18 KB
/
tauri.ios.conf.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "opencode2go",
"version": "0.1.0",
"identifier": "com.opencode2go.mobile",
"build": {
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "opencode2go",
"decorations": false,
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/ios/AppIcon-20x20@1x.png",
"icons/ios/AppIcon-20x20@2x.png",
"icons/ios/AppIcon-20x20@3x.png",
"icons/ios/AppIcon-29x29@1x.png",
"icons/ios/AppIcon-29x29@2x.png",
"icons/ios/AppIcon-29x29@3x.png",
"icons/ios/AppIcon-40x40@1x.png",
"icons/ios/AppIcon-40x40@2x.png",
"icons/ios/AppIcon-40x40@3x.png",
"icons/ios/AppIcon-60x60@2x.png",
"icons/ios/AppIcon-60x60@3x.png",
"icons/ios/AppIcon-76x76@1x.png",
"icons/ios/AppIcon-76x76@2x.png",
"icons/ios/AppIcon-83.5x83.5@2x.png",
"icons/ios/AppIcon-512@2x.png",
"icons/icon.png"
],
"iOS": {
"developmentTeam": "K8RV7BFSRS"
}
}
}