- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在重新创建的新项目中遇到 Android Studio 构建问题。请按照我所做的去做,如果有人知道如何继续,请告诉我!
我开始了一个新项目,选择“抽屉导航 Activity ”作为我的初始起点(可以是我猜的任何东西)。我立即构建了我的新“空”应用程序并在真实设备(nexus 9)上对其进行了调试。一切正常。
然后我添加了一个我想用于创建 xlsx 文件的 office 文件创建库,因此我将以下行添加到我的 build.gradle 应用程序文件(在依赖项中):
compile 'org.apache.poi:poi-ooxml:3.13'
我重新同步并且构建正常(几秒钟内)。然后我尝试在真实设备上调试它,但它不再构建(尝试构建需要 10 倍的时间)并且我得到一个错误:
Error:Execution failed for task ':app:transformClassesWithDexForDebug'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_25\bin\java.exe'' finished with non-zero exit value 1
我查了一下这个,我看到的每个地方都在告诉其他人使用“multiDex”。我知道这适用于超过 65K 方法的情况。我想对于 POI 库,我可能会超出这个范围。在找不到其他替代方案后,我通过将以下行添加到我的 build.gradle 应用程序文件来实现 multiDex:
multiDexEnabled true
compile 'com.android.support:multidex:1.0.1'
并将以下行添加到我的 list 文件中:
android:name="android.support.multidex.MultiDexApplication"
我假设我已经实现了 multiDex ok。该应用程序构建正常,但当我尝试调试它时遇到此错误(大约需要 7 秒才能到达此处):
Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/apache/xmlbeans/xml/stream/Location.class
没有其他文件被篡改。如果我从 build.gradle 中删除编译 POI 库行,那么一切正常。我把图书馆放回去了,它以同样的方式失败了。我试图弄清楚如何告诉它忽略 xmlbeans 中的重复库(其他帖子再次告诉编码人员这是需要完成的)但我不确定该怎么做以及这是否是最好的前进方式即我还应该使用 multiDex'ing 吗?
我断断续续花了几天时间才走到这一步,这是我第一次使用 Android Studio - 从 Eclipse 迁移出来,因为我厌倦了好几天都无法构建我的应用程序原因。
知道这一切意味着什么的人...请帮助我!
编辑:我已经清理并重建了项目,也尝试删除构建文件但无济于事。
Android Studio 1.5.1
Build #AI-141.2456560, built on December 1, 2015
JRE: 1.8.0_25-b18 amd64
JVM: Java HotSpot(TM) 64-Bit Server VM by Oracle Corporation
Gradle ver: 2.8
Android plugin ver 1.5.0
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.kane.testproject"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'org.apache.poi:poi-ooxml:3.13'
compile 'com.android.support:multidex:1.0.1'
}
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.kane.testproject"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
最佳答案
在build.gradle(Module app)
中添加以下行
dexOptions {
javaMaxHeapSize "2g"
}
关于Android Studio 构建 transformClassesWithJarMergingForDebug 报错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34203143/
我决定将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
我是一名优秀的程序员,十分优秀!