Annotation processors must be explicitly declared now

后端 未结 5 1967
[愿得一人]
[愿得一人] 2021-02-01 14:16
Error:Execution failed for task \':laMusique2May2016:javaPreCompileRelease\'.
> Annotation processors must be explicitly declared now.  The following dependencies on          


        
5条回答
  •  隐瞒了意图╮
    2021-02-01 15:13

    For me, this issue happened because jitpack wasn't placed as the last entry in root grade.

    allprojects {
        repositories {
            // ... other repositories
            maven { url "https://jitpack.io" }
        }
    }
    
    

    The solution was taken from @hotchemi comment in https://github.com/permissions-dispatcher/PermissionsDispatcher/issues/535#issuecomment-432190926

提交回复
热议问题