C:\Users\hp-\IdeaProjects\new\app\build.gradle
Error:(11, 0) Gradle DSL method not found: 'versionCode()'
Possible causes:<ul><li>The project 'new' may be using a version of Gradle that does not contain the method.
<a href="open.wrapper.file">Open Gradle wrapper file</a></li>
<li>The build file may be missing a Gradle plugin.
<a href="apply.gradle.plugin">Apply Gradle plugin</a></li>
这是如何解决它的错误?
我将在build.gradle中更改如下
defaultConfig {
applicationId " name.name"
minSdkVersion 15
targetSdkVersion 24
versionCode 1.1
versionName "1.1"
}
答案 0 :(得分:0)
你不能使用versionCode
的浮点数。你必须使用整数。
只有versionCode
必须比以前的versionCode
更像:
1,2,3,4,......