Cannot find a version of 'com.google.code.findbugs:jsr305' that satisfies the version constraints

后端 未结 6 1285
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-02 03:58

When generated signed APK for realse i get this error message:

Cannot find a version of \'com.google.code.findbugs:jsr305\' that satisfies the version constr         


        
6条回答
  •  轮回少年
    2021-01-02 04:31

    Try this

    android 
     {
        configurations.all 
        {
          resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
        }
     }
    

提交回复
热议问题