Initialize Schnappix Photo Booth application with custom UVC camera, silent Wi-Fi IPP printing, local gallery storage, and kiosk screen pinning support

This commit is contained in:
2026-05-25 16:44:15 +02:00
parent 5958319772
commit 872e1ffc86
51 changed files with 8931 additions and 1 deletions
+54
View File
@@ -0,0 +1,54 @@
{
"expo": {
"name": "Schnappix",
"slug": "Schnappix",
"version": "1.0.0",
"orientation": "landscape",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.schnappix"
},
"android": {
"package": "com.schnappix",
"adaptiveIcon": {
"backgroundColor": "#121214",
"foregroundImage": "./assets/icon.png"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE"
]
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow Schnappix to save captured photos to your gallery.",
"savePhotosPermission": "Allow Schnappix to save captured photos to your gallery."
}
],
[
"expo-camera",
{
"cameraPermission": "Allow Schnappix to access the tablet's front-facing camera."
}
],
[
"expo-build-properties",
{
"android": {
"extraMavenRepos": [
"https://jitpack.io"
]
}
}
],
"./plugins/withKioskAdmin",
"./plugins/withUsbCamera"
]
}
}