AndroidUSBCamera icon indicating copy to clipboard operation
AndroidUSBCamera copied to clipboard

Old implementation call

Open Thejas775 opened this issue 1 year ago • 6 comments

I am using implementation 'com.github.jiangdongguo:AndroidUSBCamera:2.3.4' this implementation call due to which the old library is being fetched. Can anyone give me update on this? If I try to update it I get this error saying : Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.gyf.immersionbar:immersionbar:3.0.0.

Even if I add the above implementation it says the same.

Thejas775 avatar Sep 23 '24 20:09 Thejas775

You may try to downgrade your gradle version or update library version

osokindm avatar Sep 24 '24 12:09 osokindm

You may try to downgrade your gradle version or update library version

didnt work

Thejas775 avatar Sep 24 '24 21:09 Thejas775

another option is to remove this dependency and corresponding code, but you will have to add this lib manually

osokindm avatar Sep 25 '24 07:09 osokindm

This library when I searched on maven doesn't exist.

On Wed, Sep 25, 2024, 12:54 PM Dmitry Osokin @.***> wrote:

another option is to remove this dependency and corresponding code, but you will have to add this lib manually

— Reply to this email directly, view it on GitHub https://github.com/jiangdongguo/AndroidUSBCamera/issues/688#issuecomment-2373265101, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOANJYMQU4SEDFPNH5VPSXTZYJQLNAVCNFSM6AAAAABOW32M7GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZTGI3DKMJQGE . You are receiving this because you authored the thread.Message ID: @.***>

Thejas775 avatar Sep 25 '24 08:09 Thejas775

This library when I searched on maven doesn't exist. …

On Wed, Sep 25, 2024, 12:54 PM Dmitry Osokin @.***> wrote: another option is to remove this dependency and corresponding code, but you will have to add this lib manually

— Reply to this email directly, view it on GitHub <#688 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOANJYMQU4SEDFPNH5VPSXTZYJQLNAVCNFSM6AAAAABOW32M7GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZTGI3DKMJQGE . You are receiving this because you authored the thread.Message ID: @.***>

Hey @Thejas775 Have you found a solution?

bs-yash-khatri avatar Feb 21 '25 12:02 bs-yash-khatri

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