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>
これはどのように修正するのですか?アンドロイドアプリのバージョンコードとバージョン名を変更しようとしましたが、次のエラーが発生します。
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