- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
美好的一天。在 AndroidStudio 中更新 google 存储库后,我有一个问题
> Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.transform.api.TransformException: java.util.zip.ZipException: duplicate entry:
> android/support/v7/cardview/BuildConfig.class
我试图从播放服务中排除组 android.support,它没有帮助。当我在另一台 PC 上开始我的项目时,我有:
> Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.transform.api.TransformException: java.util.zip.ZipException: duplicate entry:
> android/support/annotation/AnimRes.class
我的 build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'com.android.databinding'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "ru.alexeyk.myevents"
minSdkVersion 14
targetSdkVersion 23
versionCode 16
versionName "1.121"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile('com.github.nkzawa:socket.io-client:0.4.2') {
exclude group: 'org.json', module: 'json'
}
compile files('libs/sentry-1.1.4.jar')
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:support-annotations:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'com.android.support:cardview-v7:23.1.0'
compile 'com.android.support:recyclerview-v7:23.1.0'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile 'com.github.machinarius:preferencefragment:0.1.2'
compile 'com.edmodo:cropper:1.0.1'
compile 'com.makeramen:roundedimageview:2.1.1'
compile 'org.ocpsoft.prettytime:prettytime:4.0.0.Final'
compile 'com.yandex.android:mobmetricalib:2.00@aar'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.google.android.gms:play-services-ads:8.1.0'
compile 'com.google.android.gms:play-services-analytics:8.1.0'
compile 'com.google.android.gms:play-services-identity:8.1.0'
compile 'com.google.android.gms:play-services-gcm:8.1.0'
}
最佳答案
在终端中执行根项目文件夹:
./gradlew clean
它帮助了我。
关于android - 错误 :Execution failed for task ':app:transformClassesWithJarMergingForDebug' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33209631/
我决定将adodeal集成到应用程序中,按照说明进行了所有操作,但是结果仍然相同: Error:Execution failed for task ':app:transformClassesWith
我尝试使用 Firebase 平台开发带有通知的简单应用程序。我收到了错误 :app:transformClassesWithDexForDebug,我通过将行 multiDexEnabled tru
我将整个项目复制到一个新目录中,然后在新目录中更新了平台和所有 SDK(通过 Android Studio),我还添加了对 Android v4 的支持,现在我遇到了构建错误(主要与 v4 相关) )
我目前正在开发一个 Android 应用程序,但每当我尝试加载某些 jar 文件时,我都会收到以下错误: Error:Execution failed for task ':app:transform
我的项目与包含的这些库完美配合: // Support libraries compile 'com.android.support:support-v4:23.1.0' compile 'com.a
我在重新创建的新项目中遇到 Android Studio 构建问题。请按照我所做的去做,如果有人知道如何继续,请告诉我! 我开始了一个新项目,选择“抽屉导航 Activity ”作为我的初始起点(可以
我正在从 Eclipse 导入我的项目,在构建 APK 时发现以下错误。 错误:任务执行失败 com.android.build.api.transform.TransformException: j
在我的应用程序中,我使用 graphhopper 和 buttombar。这个生动的解决方案是 graphhopper 依赖项之一。 错误:任务“:app:transformClassesWithJa
我在我的项目中发现了这个错误,但没有得到它出现在哪里? 图书馆: 错误: 最佳答案 关键字 - 重复条目,与Jar合并,和android/support/v4。 libs/ 目录中似乎存在一个 Jar
我创建了一个 Android 应用程序并且运行在 API 级别 21 以上。但不能在 API 级别 21 以下运行。 这是错误日志: 错误:任务 ':app:transformClassesWithJ
我正在尝试将 Microsoft Azure 移动服务添加到我现有的 Android 应用程序中。在我的文件夹中添加 .jar 文件后。我收到错误: Execution failed for task
尝试运行项目时遇到错误 Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.and
抱歉,如果我问了一个重复的问题,但我找不到解决此错误的方法。我浏览了 stackoverflow、gradle 站点、android 博客、谷歌搜索,但几个小时都没有找到有效的解决方案。我是 Andr
我在android studio中制作了一个项目,但突然发生了错误 我今天没有在build.gradle中添加gradle,并且在我构建项目的早晨没有问题 Error:Execution failed
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.
我不知道为什么会这样,但是当我想运行一个项目时,我得到这个消息错误: Error:Execution failed for task ':transformClassesWithJarMergingF
这个问题在这里已经有了答案: TransformException duplicate entry for common.annotations.Beta (3 个答案) 关闭 6 年前。 在 an
我尝试在 Android Studio 的项目中使用 unirest。 他们在他们的网站上写道: Don't forget to also install the dependencies (org.
美好的一天。在 AndroidStudio 中更新 google 存储库后,我有一个问题 > Error:Execution failed for task ':app:transformClasse
我已经尝试编译并且没有错误,但是当我想运行该应用程序时却出现了这个错误: Error:Execution failed for task ':app:transformClassesWithJarMe
我是一名优秀的程序员,十分优秀!