Error:Gradle DSL method not found: 'has()'
程序员文章站
2023-12-23 16:44:10
...
Android Studio导入Vollery library,出现如下错误提示导致整个项目不能运行
设置为
如下图
Error:Gradle DSL method not found: 'has()'
需要在bintray.gradle 中将
publish = project.has("release")
设置为
publish = project.hasProperty("release")
如下图
改完重新编译即可