3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AndroidStudioでビルドが通らない時の解決方法

Last updated at Posted at 2024-04-14

はじめに

AndroidStudioで開発しているとたまに以下のようなエラーが発生してビルドが通らなくなったりします。

Caused by: org.gradle.workers.internal.DefaultWorkerExecutor$WorkExecutionException: A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable

そんな時に僕が試している解決方法を備忘録として残しておきます。

キャッシュの削除

File → nvalidate Cashesを選択。
スクリーンショット 2024-04-14 15.56.03.png

キャッシュをクリアする項目を選択してから、Restart。
スクリーンショット 2024-04-14 15.56.17.png

gradleのバージョンを合わせる

まずはbuild.gradleファイルを開いてgradleのバージョンを確認します。
スクリーンショット 2024-04-14 16.11.10.png

File → Project Structure → Projectを選択して、Gradle Versionを合わせます。
スクリーンショット 2024-04-14 16.14.12.png

JDKのバージョンを修正

File → Setting → Build Tools → Gradleを選択。
使用したいGradle JDKを選択。
スクリーンショット 2024-04-14 16.16.29.png

不要なmoduleを削除

File → Project Structure → Dependenciesを選択。
スクリーンショット 2024-04-14 16.00.19.png

不要なものがある場合は赤線が表示されるので、マイナスを押して削除しましょう。

appモジュール配下の.buildディレクトリを削除する

スクリーンショット 2024-07-04 11.24.14.png

最後に

困った時は試してみてください!

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?