- Manifest: name/short_name → "Bocken", start_url → "/" - Tauri: productName → "Bocken", identifier → org.bocken.app, url → "/" - Cargo: package → bocken, lib → bocken_lib - Page titles: "- Fitness" → "- Bocken" across all fitness routes - Build script: auto-regenerate android project on identifier change - Regenerate app icon from website favicon - Track Android project source in git (ignore only build output/caches) - Add native GPS foreground service and AndroidBridge for background location tracking (LocationForegroundService, AndroidBridge.kt) - Add ACCESS_BACKGROUND_LOCATION permission for screen-off GPS
32 lines
588 B
JSON
32 lines
588 B
JSON
{
|
|
"productName": "Bocken",
|
|
"identifier": "org.bocken.app",
|
|
"version": "0.1.0",
|
|
"build": {
|
|
"devUrl": "http://192.168.1.4:5173",
|
|
"frontendDist": "https://bocken.org"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"title": "Bocken",
|
|
"url": "/",
|
|
"fullscreen": false,
|
|
"useHttpsScheme": true
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|