botdevice/tauri.conf.json
Rodrigo Rodriguez (Pragmatismo) be6b17e65d Rename BotOS to BotDevice
- Update package name in Cargo.toml to botdevice
- Update product name in tauri.conf.json to BotDevice
- Update identifier to br.com.pragmatismo.botdevice
- Update README.md with BotDevice branding
- Add NPU support mention for Orange Pi 5
2025-12-12 14:16:19 -03:00

45 lines
822 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "BotDevice",
"version": "1.0.0",
"identifier": "br.com.pragmatismo.botdevice",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"frontendDist": "../botui/ui/suite"
},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "BotDevice",
"fullscreen": true,
"resizable": false
}
]
},
"bundle": {
"active": true,
"targets": ["apk", "aab"],
"android": {
"minSdkVersion": 24
},
"icon": [
"icons/icon.png"
]
},
"plugins": {
"notification": {
"enabled": true
},
"http": {
"enabled": true,
"scope": ["https://**", "http://**"]
},
"geolocation": {
"enabled": true
}
}
}