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>
這是錯誤如何解決?我會嘗試更改Android應用的版本代碼和版本名稱,但它會給出以下錯誤
我會的build.gradle如下
defaultConfig {
applicationId " name.name"
minSdkVersion 15
targetSdkVersion 24
versionCode 1.1
versionName "1.1"
}
請把你的'build.gradle'文件代碼 –
defaultConfig { 的applicationID 「ishu.ishu」 minSdkVersion 15 targetSdkVersion 24 versionCode 1.1 versionName「1.1」 } – Ishwinder