michangarrito-mobile-v2/app.json
rckrdmrd a71600df2f Migración desde michangarrito/apps/mobile - Estándar multi-repo v2
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 08:26:57 -06:00

62 lines
1.6 KiB
JSON

{
"expo": {
"name": "MiChangarrito",
"slug": "michangarrito",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"scheme": "michangarrito",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#10B981"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.michangarrito.app",
"associatedDomains": ["applinks:michangarrito.com"],
"infoPlist": {
"NSCameraUsageDescription": "Necesitamos acceso a la camara para escanear codigos de barras",
"UIBackgroundModes": ["fetch", "remote-notification"]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#10B981"
},
"package": "com.michangarrito.app",
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "michangarrito"
},
{
"scheme": "https",
"host": "michangarrito.com",
"pathPrefix": "/r"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"apiUrl": "http://localhost:3141/api/v1"
},
"plugins": [
"expo-secure-store"
]
}
}