Android gradle modules with the same name

前端 未结 1 1681
醉话见心
醉话见心 2021-01-05 10:52

I am working on an Android project that uses the following dependency:

    
        org.glassfish.jersey.core

        
相关标签:
1条回答
  • 2021-01-05 11:09

    I am using gradle and had the same issue and solved it according to this answer

    compile ('org.glassfish.jersey.containers:jersey-container-servlet:2.14'){
        exclude module: 'javax.inject'
    }
    compile 'org.glassfish.hk2.external:javax.inject:2.4.0-b06'
    
    0 讨论(0)
提交回复
热议问题