用于我的android项目的gradle。我最近添加了一些jar文件(最后一次)。但是添加之后,我得到了构建错误。我的gradle文件是
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
// ...
],
现在构建后出现了这样的错误:
错误:任务':app:transformClassesWithJarMergingForDebug'的执行失败。
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复项:b.class
我该如何解决这个问题。任何人都请帮助我克服这个问题。非常感谢。
答案 0 :(得分:0)
class Foo {
foo: () => void
}
class Bar extends Foo {
constructor() {
super()
// TypeScript should see that the method is always bound.
this.foo = this.foo.bind(this)
}
foo() {}
}
我认为这两个库是相同的。如果是,则尝试删除其中之一并重建项目。