我有
Android Studio 2.0 Beta 6
而build.gradle中的Gradle版本是classpath’com.android.tools.build:gradle:2.1.0-beta1′
(我今天更新,早些时候我在毕业:2.0.0-alpha9).
现在,当我尝试运行我的应用程序,我不断得到这个消息.
而build.gradle中的Gradle版本是classpath’com.android.tools.build:gradle:2.1.0-beta1′
(我今天更新,早些时候我在毕业:2.0.0-alpha9).
现在,当我尝试运行我的应用程序,我不断得到这个消息.
UnsupportedMethodException
Unsupported method: InstantRun.getRestartDexFile().
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.
Alternatively,you can ignore this exception and read other information from the model.
解决方法
我发布这个作为一个答案,因为这解决了我的问题.
我将build.gradle中的类路径更改为
我将build.gradle中的类路径更改为
classpath ‘com.android.tools.build:gradle:2.1.0-alpha3
我没有改变任何其他/任何设置,也没有更新我的Android Studio.
Link to the page where I found it.
不得不搜索很多. 原文链接:https://www.f2er.com/android/311818.html