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
+23
View File
@@ -0,0 +1,23 @@
apply plugin: 'com.android.library'
apply plugin: 'expo-module-gradle-plugin'
apply plugin: 'org.jetbrains.kotlin.android'
android {
namespace "expo.modules.usbcamera"
compileSdkVersion findProperty("expo.compileSdkVersion") ?: 34
defaultConfig {
minSdkVersion 23 // libausbc requires min SDK 23
targetSdkVersion findProperty("expo.targetSdkVersion") ?: 34
}
buildFeatures {
buildConfig true
}
}
dependencies {
implementation 'com.facebook.react:react-android'
// AndroidUSBCamera library for USB/UVC Webcams
implementation 'com.github.jiangdongguo.AndroidUSBCamera:libausbc:3.3.3'
}