Files
bincio-rec/app.json
T
Davide Scaini 7db54712fa feat: app icon, name fix, and icon generation script
- scripts/generate_icons.sh: ImageMagick script — dark #09090b bg,
  white B and red R (#ef4444) at the same 480pt size, NotoSans-Bold.
  Generates icon, adaptive foreground, monochrome, and splash variants.
- app.json: name changed to 'Bincio Rec'; adaptive icon backgroundColor
  updated to #09090b; removed redundant backgroundImage
2026-06-04 00:36:06 +02:00

68 lines
1.8 KiB
JSON

{
"expo": {
"name": "Bincio Rec",
"slug": "bincio-rec",
"scheme": "bincio-rec",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.bincio.rec",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "bincio-rec uses your location to record your activity track.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "bincio-rec uses your location in the background to record your activity track.",
"UIBackgroundModes": [
"location"
]
}
},
"android": {
"package": "com.bincio.rec",
"adaptiveIcon": {
"backgroundColor": "#09090b",
"foregroundImage": "./assets/android-icon-foreground.png",
"monochromeImage": "./assets/android-icon-monochrome.png"
},
"predictiveBackGestureEnabled": false,
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_BACKGROUND_LOCATION",
"FOREGROUND_SERVICE",
"FOREGROUND_SERVICE_LOCATION",
"BLUETOOTH",
"BLUETOOTH_ADMIN",
"BLUETOOTH_SCAN",
"BLUETOOTH_CONNECT",
"REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"ignorePaths": [
"CLAUDE.md"
],
"plugins": [
"expo-sqlite",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "bincio-rec records your GPS track during activities.",
"isAndroidBackgroundLocationEnabled": true,
"isAndroidForegroundServiceEnabled": true
}
],
[
"expo-notifications",
{
"icon": "./assets/icon.png",
"color": "#3b82f6"
}
],
"expo-web-browser"
]
}
}