2016-07-16 47 views
0
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" 
    } 
+0

請把你的'build.gradle'文件代碼 –

+0

defaultConfig { 的applicationID 「is​​hu.ishu」 minSdkVersion 15 targetSdkVersion 24 versionCode 1.1 versionName「1.1」 } – Ishwinder

回答

0

你不能用一個浮點數爲versionCode改變。你必須使用一個整數。 只是versionCode必須比以前versionCode更喜歡它:

1,2,3,4,...

+0

我必須在manifest中更改版本嗎? – Ishwinder

+0

好的謝謝它工作 – Ishwinder

+1

在Android Studio清單文件沒有必要。但在日蝕中必須在清單中改變它。請原諒我英語不好 –

相關問題