powermock-mockito と mockito を Android テスト プロジェクトに追加しようとしています。android コマンドライン ツールを使用して android テスト プロジェクトを作成し、build.xml とプロジェクト構造を作成しました。libs/ ディレクトリに次の jar があります。
- dexmaker-1.0.jar
- dexmaker-mockito-1.0.jar
- mockito-all-1.9.5.jar
- powermock-mockito-1.5-full.jar
Ant デバッグでプロジェクトをビルドしようとすると、次のエラーが発生します。
[apkbuilder] Creating ProjectTests-debug-unaligned.apk and signing it with a debug key...
[apkbuilder] Found duplicate file for APK: mockito-extensions/org.mockito.plugins.MockMaker
[apkbuilder] Origin 1: /home/cmiller/Projects/android-project/ProjectTests/libs/powermock-mockito-1.5-full.jar
[apkbuilder] Origin 2: /home/cmiller/Projects/android-project/ProjectTests/libs/powermock-mockito-1.5-full.jar
BUILD FAILED
/home/cmiller/Applications/adt-bundle-linux/sdk/tools/ant/build.xml:951: The following error occurred while executing this line:
/home/cmiller/Applications/adt-bundle-linux/sdk/tools/ant/build.xml:962: The following error occurred while executing this line:
/home/cmiller/Applications/adt-bundle-linux/sdk/tools/ant/build.xml:319: com.android.sdklib.build.DuplicateFileException: Duplicate files at the same path inside the APK
単一のjarファイルで重複ファイルを見つける方法がわかりません。build.xml ファイルはまったく変更されておらず、custom_rules.xml も作成していません。どんな助けでも大歓迎です。