Old implementation call
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.
You may try to downgrade your gradle version or update library version
You may try to downgrade your gradle version or update library version
didnt work
another option is to remove this dependency and corresponding code, but you will have to add this lib manually
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: @.***>
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?
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'