11
11

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 5 years have passed since last update.

Android SDK Tools 24.3.2でNDKビルドできない問題をかわす

Posted at

発生するエラーについて

Android SDK Tools 24.3.2をインストールした環境でNDKビルドすると以下のエラーが出る。

java.io.IOException: Cannot run program "/ほにゃらら/${aapt}" (in directory "ほにゃらら"): error=2, No such file or directory

原因

Android SDK Tools 24.3.2に付属するAntのbuild.xmlが壊れている。

  • aapt/dx/zipalignに関してのパスの記述が消えている(?)

解決方法

Android SDK内 Tools/Ant/build.xmlにaapt/dx/zipalignへのパスを設定する
自分は以下の内容を155行目からのtools location部分に書き加えました
また、23.0.0-previewの部分は適宜ご自身の環境のBuild-Toolsのバージョンに置き換えてください。


<property name="aapt" location="${sdk.dir}/build-tools/23.0.0-preview/aapt" />
    <property name="dx" location="${sdk.dir}/build-tools/23.0.0-preview/dx" />
    <property name="zipalign" location="${sdk.dir}/build-tools/23.0.0-preview/zipalign" />
11
11
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
11
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?