- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试生成应用程序 APK 时,出现以下错误。
Error:Execution failed for task ':app:transformClassesWithJarMergingForRelease'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/thirdparty/publicsuffix/PublicSuffixPatterns.class
它是在我添加后出现的:“multiDexEnabled true ”到我的 gradle 文件。但这是必要的。
有人可以帮助我吗?
gradle 文件包含以下内容:
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
lintOptions{
checkReleaseBuilds false
}
defaultConfig {
applicationId "pl.nowakprojects.socialmafia"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "0.1"
multiDexEnabled true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildTypes.each {
it.buildConfigField 'boolean', 'PREMIUM_VERSION', PremiumVersionBoolean
}
}
ext {
JUNIT_VERSION = '4.12'
DAGGER_VERSION = '2.4'
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'org.parceler:parceler:1.1.5'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.android.support:cardview-v7:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile 'com.android.support:support-v4:25.1.0'
compile 'org.parceler:parceler-api:1.1.5' //Parceler - przenoszenie obiektow miedzy Activity
compile 'com.jakewharton:butterknife:8.4.0' //ButterKnife
compile 'com.jakewharton:butterknife-compiler:8.4.0'
compile 'com.afollestad.material-dialogs:core:0.9.0.2'
compile 'org.greenrobot:eventbus:3.0.0' //EventBus
compile 'me.tankery.lib:circularSeekBar:1.1.3' //SeekBar
// compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha8'
//compile 'com.android.support.constraint:constraint-layout:1.0.0-beta3'
compile 'com.annimon:stream:1.1.4'
//compile "com.google.auto.value:auto-value:1.2"
}
最佳答案
此问题是由于 编译 'org.parceler:parceler:1.1.5'
gradle 造成的。
Just remove the
compile 'org.parceler:parceler:1.1.5'
, it will work.
不知道此问题的根本原因。
关于java - Android Studio BUILD FAILED 重复条目 : com/google/thirdparty/publicsuffix/PublicSuffixPatterns. 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41709114/
有没有一种简单的方法来获取与文件名模式匹配的文件名列表包括对父目录的引用?我想要的是 "..\ThirdParty\dlls\*.dll" 返回一个像 ["..\ThirdParty\dlls\one
本文整理了Java中com.googlecode.streamflyer.internal.thirdparty.ZzzValidate类的一些代码示例,展示了ZzzValidate类的具体用法。这些
当我尝试编译我的应用程序时,错误显示 程序类型已经存在:com.google.thirdparty.publicsuffix.TrieParser消息{kind=ERROR, text=程序类型已经存
本文整理了Java中com.googlecode.streamflyer.internal.thirdparty.ZzzValidate.notNull()方法的一些代码示例,展示了ZzzValida
我在使用 Mockito 测试方法时遇到问题。请检查JunitTestCaseClass的testMethodToBeTested()方法,该方法必须处理第三方类的静态方法调用。 class Clas
这个问题在这里已经有了答案: script tag in angular2 template / hook when template dom is loaded (2 个答案) 关闭 5 年前。
当我尝试生成应用程序 APK 时,出现以下错误。 Error:Execution failed for task ':app:transformClassesWithJarMergingForRele
我想使用 guava jar 的 Optional 类。我可以在我的项目中使用它。但是,在 gwt-dev jar 中,Optional 类已经存在于 com.google.gwt.thirdpart
我是一名优秀的程序员,十分优秀!