gpt4 book ai didi

java - 执行失败异常

转载 作者:太空宇宙 更新时间:2023-11-04 11:10:24 24 4
gpt4 key购买 nike

当我在 android studio 中运行应用程序时,出现此错误

Execution failed for task ':app:transformClassesWithDexForDebug'.

com.android.build.api.transform.TransformException:

java.lang.RuntimeException:

java.lang.RuntimeException: Unable to pre-dex 'C:\Users\abbasooo.android\build-cache\02f0747de7a8d30b23f383d74adce1e1ad5192a4\output\jars\classes.jar'

to

'C:\Users\abbasooo\Desktop\tesssst\app\build\intermediates\transforms\dex\debug\folders\1000\10\classes_571d6b5e229e10768234d4a86b076939bc9a4c44'**

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.abbasooo.tesssst"
minSdkVersion 9
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.+'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
compile 'com.android.support:design:24.+'
testCompile 'junit:junit:4.12'
}

这是我的 AndroidManifest.xml强文本

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.abbasooo.tesssst">

<application
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>

最佳答案

我遇到了类似的问题,我使用以下方法解决了它:

尝试在中使用“multiDexEnabled true”

build.gradle 中的defaultConfig { }

如果不能解决问题,则使用

android:name="android.support.multidex.MultiDexApplication",在Android Manifest的标签中。

如果问题仍然存在,请使用org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=5120m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

在 gradle.properties 文件中。

关于java - 执行失败异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46078821/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com