1. ホーム
  2. gradle

AndroidStudio は Gradle の同期に失敗しました。com.android.application' というIDのプラグインが見つかりませんでした。

2022-02-22 20:26:14

AndroidStudio は Gradle の同期に失敗しました。ルーチンのインポート時に id 'com.android.application' を持つプラグインが見つかりませんでした。


いくつかのソースを参照して、以下のように外部のbuild.gradleファイルにコードのスニペットを追加して、正常に実行することができました。


1. 実行可能なプロジェクトを開き、その外部のbuild.gradleファイルを見つけてください。


開いてコードを探します。

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

Copy or replace Add to the outer build.gradle file of the routine.

The buildToolsVersion error requires a network connection to download.

This problem can be fixed by modifying the build.gradle file to match the version of the routines you can run

If you don't have a running routine, just create a new hello world.

Hope this helps!

再度プログラムをクリーンアップすれば、問題なく実行できます。

クリーンアップ後、以下のような現象が発生することがあります。

The buildToolsVersion error requires a network connection to download.

This problem can be fixed by modifying the build.gradle file to match the version of the routines you can run

If you don't have a running routine, just create a new hello world.

Hope this helps!