本文介绍了错误产生最终的归档文件:找到重复文件APK:LICENSE.TXT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图用jsHybugger库(www.jshybugger.com)调试一些JavaScript - 无论其 - 在尝试部署开发建设到我的设备我看到下面的错误时:

I'm trying to use the jsHybugger library (www.jshybugger.com) to debug some javascript - HOWEVER - when attempting to deploy the dev build to my device I see the following error :

请注意:我使用Eclipse

Note: I am using Eclipse

此外,对于包括jsHybugger罐子两个项目,这些都是的.classpath的:

Also, for the two projects that include the jsHybugger jar, these are the .classpath's :

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
    <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
    <classpathentry exported="true" kind="lib" path="libs/jshybugger-library-4.5.2.jar"/>
    <classpathentry exported="true" kind="lib" path="libs/gson-2.2.4.jar"/>
    <classpathentry exported="true" kind="lib" path="libs/httpmime-4.1.1.jar"/>
    <classpathentry exported="true" kind="lib" path="libs/icu4j-4_8_1_1.jar"/>
    <classpathentry exported="true" kind="lib" path="libs/signpost-core-1.2.1.1.jar"/>
    <classpathentry exported="true" kind="lib" path="libs/android-support-v4.jar"/>
    <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
    <classpathentry exported="true" kind="lib" path="libs/twitter4j-core-3.0.5.jar"/>
    <classpathentry kind="src" path="src"/>
    <classpathentry kind="src" path="gen"/>
    <classpathentry kind="output" path="bin/classes"/>
</classpath>


<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
    <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
    <classpathentry exported="true" kind="lib" path="/libs/jshybugger-library-4.5.2.jar"/>
    <classpathentry exported="true" kind="lib" path="/libs/urbanairship-lib-2.1.2.jar"/>
        <classpathentry kind="src" path="gen"/>
    <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
    <classpathentry exported="true" kind="lib" path="/libs/gson-2.2.4.jar"/>
    <classpathentry exported="true" kind="lib" path="/libs/httpmime-4.1.1.jar"/>
    <classpathentry exported="true" kind="lib" path="/libs/libGoogleAnalyticsV2.jar"/>
    <classpathentry kind="output" path="bin/classes"/>
</classpath>

正如你所看到的,有没有包括JUnit的。

As you can see, there's no junit included.

推荐答案

我发现的一个项目包括JUnit的:

I discovered that one of the projects included junit :

所以我点击删除摆脱JUnit 4中的。
这引起test文件夹变成差错! - 和我删除该文件夹

So I clicked "REMOVE" to get rid of Junit 4.This caused the test folder to become errored - and I deleted that folder !

随后,我能够在项目部署到我的dev设备。

Subsequently, I was able to deploy the project to my dev device.

结论:
它不会出现是可能的,直到该`LICENSE.TXT被jsHybugger除去使用的Junit和jsHybugger同时

Conclusion:It doesn't appear to be possible to use Junit and jsHybugger at the same time until that `LICENSE.TXT" is removed by jsHybugger

这篇关于错误产生最终的归档文件:找到重复文件APK:LICENSE.TXT的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 12:18