56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"expo": {
|
|
"name": "MiInventario",
|
|
"slug": "miinventario",
|
|
"version": "0.1.0",
|
|
"orientation": "portrait",
|
|
"icon": "./src/assets/icon.png",
|
|
"userInterfaceStyle": "light",
|
|
"splash": {
|
|
"image": "./src/assets/splash.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"assetBundlePatterns": [
|
|
"**/*"
|
|
],
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.miinventario.app",
|
|
"infoPlist": {
|
|
"NSCameraUsageDescription": "MiInventario necesita acceso a la camara para grabar videos de tus anaqueles y generar inventario automatico.",
|
|
"NSMicrophoneUsageDescription": "MiInventario necesita acceso al microfono para grabar videos."
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./src/assets/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"package": "com.miinventario.app",
|
|
"permissions": [
|
|
"android.permission.CAMERA",
|
|
"android.permission.RECORD_AUDIO"
|
|
]
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./src/assets/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
[
|
|
"expo-camera",
|
|
{
|
|
"cameraPermission": "Permite acceso a la camara para escanear inventario."
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true
|
|
},
|
|
"scheme": "miinventario"
|
|
}
|
|
}
|