当前位置: 首页 > 知识库问答 >
问题:

分级重复条目FloatProperty

蓟浩旷
2023-03-14

我已经添加spinnerwheel模块到我的项目中,它不会再构建了。它有某种与nineoldandroids库的重复条目,该条目包含在spinnerwheel模块中。我在生成过程中得到这个错误

Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
    > java.util.zip.ZipException: duplicate entry: com/nineoldandroids/util/FloatProperty.class

我在app文件夹上运行../Gradlew Dependencies,在spinnerwheel模块下发现了以下内容:

\--- *********-android3.5:spinnerwheel:unspecified
     \--- LOCAL: nineoldandroids-2.2.0.jar
dependencies {
    compile 'com.android.support:appcompat-v7:22.0.+'
    compile 'com.android.support:support-v4:22.+'
    //noinspection GradleCompatible
    compile 'com.android.support:multidex:1.0.0'
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.facebook.android:facebook-android-sdk:3.23.0'
    compile 'com.google.android.gms:play-services:6.5.87'
    compile 'org.apache.httpcomponents:httpmime:4.3.5'
    compile 'org.apache.httpcomponents:httpclient:4.3.5'
    compile 'com.github.castorflex.smoothprogressbar:library-circular:1.0.1'
    compile project(':loopj')
    compile project(':StackBlur')
    compile 'it.sephiroth.android.library.horizontallistview:hlistview:1.2.2'
    compile 'it.sephiroth.android.library.imagezoom:imagezoom:+'
    compile 'com.navercorp.pulltorefresh:library:3.2.0@aar'
    compile 'com.edmodo:cropper:1.0.1'
    compile 'com.getbase:floatingactionbutton:1.7.0'
    compile 'com.afollestad:material-dialogs:0.6.6.3'
    compile 'com.sothree.slidinguppanel:library:3.0.0'
    compile 'com.github.traex.rippleeffect:library:1.2.3'
    compile 'in.srain.cube:grid-view-with-header-footer:1.0.11'
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
    compile 'cn.pedant.sweetalert:library:1.3'
    compile 'com.github.johnpersano:supertoasts:1.3.4@aar'
    compile 'com.github.johnkil.android-appmsg:appmsg:1.2.0'
    compile('com.crashlytics.sdk.android:crashlytics:2.2.4@aar') {
        transitive = true;
    }
    compile 'io.branch.sdk.android:library:1.5.5'
    compile 'com.kyleduo.switchbutton:library:1.2.8'
}

共有1个答案

阎枫涟
2023-03-14

只需在gradle部分添加compile'com.nineoldandroids:Library:2.4.0'并更新minifyEnabled false,而不是minifyEnabled true,类似于

 类似资料:
  • 我通过它的maven存储库将Zendesk mobile sdk集成到了我的项目中,它就不会再构建了。它和我正在使用的毕加索图书馆有些冲突。我在构建过程中遇到以下错误: 我在app文件夹上运行了,这是我在zendesk模块下发现的: 所以zendesk也在使用毕加索,但与我在项目中的版本不同。我试着把毕加索排除在zendesk之外,是这样的: 但这会在应用程序的其他组件中导致运行时异常。我得到一个

  • 我在Android Studio整天都在和这个错误作斗争。项目是从eclipse解决方案导入的。我一直试图实现所有的修复,列出了类似的帖子,没有任何工作。我是一个Android初学者。 我很乐意提供任何进一步的信息。

  • 我将 Digits 移动 sdk 集成到我的项目中,它不再构建。它与我正在使用的gson库有某种冲突。我在构建过程中收到此错误: 这是我的构建.

  • 错误:任务“:DrivermaticsApp:PackageAllDebugClassesFormultiDex”执行失败。 zipException:重复条目:com/flurry/sdk/jv$a.class 请帮忙... 这是我的建筑。格雷德尔:-

  • 问题内容: 这是我添加时开始的。尝试构建时出现此错误: 这是运行时输出的一部分: 我尝试将其添加到 我的 所有 依赖项中: 我试图将其添加到我的块: 这些变化: 这是 修复错误 之前的 尝试: 我搜索了我的项目,发现它仅在某些罐子中使用;,和。我试图将添加到那些相关的依赖项,但仍然看到相同的错误。 我在这里停留了太久了。有什么建议? 问题答案: 从播放服务相关的依赖项中排除。 例如: PS在出现错

  • 我有一个类,它将用一个数组中预先生成的所有员工填写一个列表。我可以用员工填充ArrayList,但唯一的问题是,我得到了一些“重复”条目,我使用引号是因为它们不完全相同,但它们可以共享相同的姓名或员工编号,但可能不具有相同的雇用年份或薪资等。 员工类别如下: 下面是将填充列表的generateList方法: “generateProductionWorker()和shiftSupervisor方法