Androidスタジオのプラグインを更新しました。現在、私は既存のプロジェクトを開こうとするとエラーが発生します。Android gradleビルドエラー:(10、0)Gradle DSLメソッドが見つかりません: 'compile()'
Error:(10, 0) Gradle DSL method not found: 'compile()'
Possible causes:The project 'TuteSample' may be using a version of Gradle that does not contain the method.
The build file may be missing a Gradle plugin.
これは私のbuild.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
compile "com.android.support:appcompat-v7:21.0.+"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files }
}allprojects {
repositories {
jcenter()
}
}
は、ルートフォルダのこのgardleファイルであるとして、あなたの依存関係を配置またはアプリケーションフォルダ? – KOTIOS
プロジェクトを再構築しましたか?プロジェクトをクリーン?またはキャッシュを無効にしますか?あなたはまた、新しいプロジェクトとしてプロジェクトを開くことができます、それはあなたのためにものを動作させることができます。 – ImAtWar
コンパイルステートメントを間違ったファイルに入れました。これはトップレベルのビルドファイルです。あなたが質問に追加したコードのコメントに記載されているように、これを個々のmodule build.gradleファイルに入れると本当に良いでしょう。 –