test(android app): this is the start to the android app

This commit is contained in:
2025-11-15 16:22:19 -06:00
parent eb6b9ce388
commit 7b630d5c0b
25 changed files with 14215 additions and 1 deletions

71
mobileLst/app.json Normal file
View File

@@ -0,0 +1,71 @@
{
"expo": {
"name": "LSTScanner",
"slug": "lst-scanner-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "lstscanner",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true
},
"updates": {
"enabled": true,
"url": "http://10.193.0.56:4000/api/mobile/updates",
"fallbackToCacheTimeout": 30000,
"codeSigningCertificate": "./certs/certificate.pem",
"codeSigningMetadata": {
"keyid": "self-hosted",
"alg": "rsa-v1_5-sha256"
}
},
"runtimeVersion": "1.0.0",
"android": {
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"package": "com.company.lstscanner",
"versionCode": 1,
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"./plugins/androidCustomizations",
[
"expo-splash-screen",
{
"image": "./assets/icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"backgroundColor": "#000000"
}
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
},
"ios": {}
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
}
}
}