您的位置:首页 > 移动开发 > Android开发

AS: Unsupported method: AndroidProject.getPluginGeneration().

2016-12-27 10:20 417 查看
转自http://blog.csdn.net/u012764110/article/details/52885234

报错内容
16:56:06 UnsupportedMethodException
Unsupported method: AndroidProject.getPluginGeneration().
The version of Gradle you connect to does not support that method.
To resolve the problem you can change/upgrade the target version of Gradle you connect to.
Alternatively, you can ignore this exception and read other information from the model.
1
2
3
4
5
1
2
3
4
5

解决方法:关掉instant run



还有一个解决方法,下载LockHunter,然后再app的build.gradle中加上如下代码,确保清空build文件夹内容
task clean(type: Exec) {
ext.lockhunter = '\"D:\\Program Files\\LockHunter\\LockHunter.exe\"'
def buildDir = file(new File("build"))
commandLine 'cmd', "$lockhunter", '/delete', '/silent', buildDir
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐