- 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
45 lines
822 B
JSON
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
|
|
}
|
|
}
|
|
}
|