Replace remote JCenter dependencies with local AAR binaries for usb-camera module

This commit is contained in:
2026-05-25 20:00:24 +02:00
parent ea95dfdca6
commit c1ab77bacd
3 changed files with 7 additions and 2 deletions
+7 -2
View File
@@ -22,11 +22,16 @@ repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://jcenter.bintray.com' }
}
dependencies {
implementation 'com.facebook.react:react-android'
// AndroidUSBCamera library for USB/UVC Webcams
implementation 'com.github.jiangdongguo.AndroidUSBCamera:libausbc:3.2.7'
implementation('com.github.jiangdongguo.AndroidUSBCamera:libausbc:3.2.7') {
exclude group: 'com.gyf.immersionbar', module: 'immersionbar'
exclude group: 'com.zlc.glide', module: 'webpdecoder'
}
// Local AAR dependencies downloaded to avoid JCenter resolution issues
implementation files('libs/immersionbar-3.0.0.aar')
implementation files('libs/webpdecoder-1.6.4.9.0.aar')
}