1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction

Last updated at Posted at 2024-03-13

モジュール作成し、ビルドしようとしたら起きたエラー

🚑エラー内容

Execution failed for task ':app:processDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction
   > AAPT2 aapt2-8.1.0-10154469-osx Daemon #0: Unexpected error during link, attempting to stop daemon.
     This should not happen under normal circumstances, please file an issue if it does.

🩹エラー対処

module配下のbuild.gradle.ktsを編集

変更前

build.gradle.kts
plugins {
    id("com.android.application")
}

変更後

build.gradle.kts
plugins {
    id("com.android.library")
}

最後に

module配下のbuild.gradle.ktsdefaultConfig内にあったapplicationIdなども削除しないと怒られた

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?