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

Android でビルドエラーになった話

Posted at

はじめに

Android Studio でビルドができない問題について個人的メモとしてまとめました。

環境

macOS Ventura 13.1
Android Studio Dolphin | 2021.3.1 Patch 1

エラー #1

Could not find tools.jar. となりビルドができない

> Could not find tools.jar. Please check that /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home contains a valid JDK installation.

解決方法

メッセージにあるように tool.jar を所定の位置に配置すると解決します。
私の環境ですと /Users/<ユーザー名>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib にありましたのでコピーしました。

$ cd //Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/

# フォルダ内に tool.jar が存在しないことを確認
$ ls -alF

# コピー
$ sudo cp <コピー元のパス>/tools.jar ./

注意点

  • ユーザーのライブラリフォルダー( /Users/<ユーザー名>/Library )ではないので注意が必要です。

エラー #2

Unable to load class 'javax.xml.bind.JAXBException'. となりビルドができない

Unable to load class 'javax.xml.bind.JAXBException'.

This is an unexpected error. Please file a bug containing the idea.log file.

解決方法

AGP のバージョンを更新すると解決します。

build.gradle
dependencies {
    classpath 'com.android.tools.build:gradle:7.3.1'
}
gradle-wrapper.properties
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
0
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
0
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?