hyoromoのブログ

最近はVRSNS向けに作ったものについて書いています

EclipseでAndroidアプリのビルドでエラーが発生して困った話

エラーといっても色々なエラーがある訳で、今回はCocos2dx向けのアプリをビルドした時に以下のエラーが発生した時の話です。

errors occurred during the build. errors running builder 'android pre compiler' on project could not initialize class com.android.xml.androidxpathfactory

解決方法

  1. Eclipseのプロジェクト Properties を開きます
  2. Properties上の Resources > Resource filters を選択
    f:id:hyoromo:20150224125041j:plain
  3. 「Add...」ボタンを押下
  4. Filter type項目を「Exclude all」選択
  5. Applies to項目を「Files and folders」選択し、「All children (recursive)」にチェック
  6. File and Folder Attributes項目のテキスト入力ボックスに「.svn」と入力
    f:id:hyoromo:20150224125105j:plain
  7. OKボタンを押下
  8. Eclipse再起動
  9. エラー対象のプロジェクトをリビルド

参考

参考というよりそのまま。ググった時に他にも色々対処法がありましたが、私はここに書かれてある方法で解決しました。