AS报错Unsupported method: BaseConfig.getApplicationIdSuffix()

今天打開一個新的項目,build.gradle sync時報錯:

Unsupported method: BaseConfig.getApplicationIdSuffix().
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.

好像是gradle版本太低的原因,修改project的build.gradle:未修改前gradle版本是1.1.0

dependencies {
    classpath 'com.android.tools.build:gradle:2.2.0'

sync繼續報錯:

Minimum supported Gradle version is 2.14.1. Current version is 2.2.1. If using the gradle wrapper, try editing the distributionUrl in D:\code\factoryTool\gradle\wrapper\gradle-wrapper.properties to gradle-2.14.1-all.zip
Fix Gradle wrapper and re-import project

修改gradle-wrapper.properties:

distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip


猜你喜欢

转载自blog.csdn.net/yurhzzu/article/details/80326910