当我在android studio中运行应用程序时,我收到此错误
任务执行失败 ':应用程序:transformClassesWithDexForDebug&#39 ;.
com.android.build.api.transform.TransformException:
java.lang.RuntimeException:
java.lang.RuntimeException:无法执行 预DEX ' C:\用户\ abbasooo.android \建立缓存\ 02f0747de7a8d30b23f383d74adce1e1ad5192a4 \输出\罐子\ classes.jar'
到
' C:\用户\ abbasooo \桌面\ tesssst \应用\建立\中间体\变换\ DEX \调试\文件夹\ 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>
答案 0 :(得分:0)
我遇到了类似的问题,我使用以下方法解决了这个问题:
尝试使用&#34; multiDexEnabled true&#34;在
build.gradle中的defaultConfig {}
如果无法解决问题,请使用
android:name =&#34; android.support.multidex.MultiDexApplication&#34;,在Android Manifest的标签中。
如果问题仍然存在,请使用 org.gradle.jvmargs = -Xmx4g -XX:MaxPermSize = 5120m -XX:+ HeapDumpOnOutOfMemoryError -Dfile.encoding = UTF-8
gradle.properties文件中的。
答案 1 :(得分:0)
三种方法可以解决这个问题: