CampgroundTickets/app/app.json
Hank 42043957e0
Some checks failed
Build Android APK / build-apk (push) Failing after 35m46s
Add bear + QR app icon
A green icon where a QR code's finder squares form a bear face — brown ears on
top, cream snout in the center. Wired as the main icon, the Android adaptive
icon (foreground + #0f1a12 background), and the web/PWA icons + favicon.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-09 16:42:35 +00:00

53 lines
1.2 KiB
JSON

{
"expo": {
"name": "Camp Scan",
"slug": "camptickets",
"version": "0.1.0",
"orientation": "portrait",
"scheme": "campscan",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"icon": "./assets/icon.png",
"android": {
"package": "top.mowden.campscan",
"versionCode": 1,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0f1a12"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.VIBRATE"
]
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "top.mowden.campscan",
"infoPlist": {
"NSCameraUsageDescription": "Camp Scan uses the camera to scan ticket QR codes at the gate."
}
},
"web": {
"bundler": "metro",
"output": "single",
"favicon": "./assets/icon.png"
},
"plugins": [
"expo-router",
"expo-audio",
"expo-status-bar",
[
"expo-camera",
{
"cameraPermission": "Camp Scan uses the camera to scan ticket QR codes at the gate."
}
],
"expo-secure-store"
],
"extra": {
"router": {
"origin": false
}
}
}
}