Conflict issue with com.google.protobuf:protobuf-java and firebase

I found the temporary solution.

add it in app.gradle for solving confilct

THanks,


    configurations {
        implementation.exclude module:'proto-google-common-protos'
        implementation.exclude module:'protolite-well-known-types'
        implementation.exclude module:'protobuf-lite'
    }
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/plexus/components.xml'
        exclude 'plugin.xml'
    }
1 Like