AndroidUSBCamera icon indicating copy to clipboard operation
AndroidUSBCamera copied to clipboard

Could not find com.gyf.immersionbar:immersionbar:3.0.0.

Open lsmayday opened this issue 1 year ago • 3 comments

找不到了!!

lsmayday avatar Oct 12 '24 15:10 lsmayday

implementation 'com.geyifeng.immersionbar:immersionbar:3.2.2'

akshatsinghania avatar Oct 13 '24 11:10 akshatsinghania

implementation 'com.geyifeng.immersionbar:immersionbar:3.2.2'

where should we add it ?

farbodpm avatar Feb 09 '25 15:02 farbodpm

if you do not use immersionbar or webpdecoder in your project, you can exclude them in your build.gradle:

Kotlin Gradle (kts):

    implementation("com.github.jiangdongguo:AndroidUSBCamera:3.3.3") {
        exclude (group= "com.gyf.immersionbar", module= "immersionbar") // Exclude old ImmersionBar
        exclude (group= "com.zlc.glide", module= "webpdecoder") // Also exclude webpdecoder if needed
    }

Gradle:

`dependencies {
    implementation ('com.github.jiangdongguo:AndroidUSBCamera:3.3.3') {
        exclude group: 'com.gyf.immersionbar', module: 'immersionbar' // Exclude old ImmersionBar
        exclude group: 'com.zlc.glide', module: 'webpdecoder' // Also exclude webpdecoder if needed
    }`

And if you want to use these libraries, you can install them with the desired version:

    implementation 'com.github.gyf-dev:ImmersionBar:3.2.2'
    implementation 'com.github.zlc-platform:webpdecoder:2.1.0' 

AmirMz1 avatar Mar 26 '25 12:03 AmirMz1