2017-12-18 28 views
-1

Android Studio 3.0.1で次のビルドの問題が発生しましたが、解決できませんでした。私はその間に私のアプリを実行することはできません。GradleのDexArchiveBuilderExceptionを解決するにはどうすればよいですか?

com.android.builder.dexing.DexArchiveBuilderException:com.android.builder.dexing.DexArchiveBuilderException: Failed to process /home/Code/StudioProjects/aac/app/build/intermediates/transforms/instantRunSlicer/debug/7 

...

GradleではコンソールははNoSuchElementExceptionが役割を果たしている、しかし、それは私のコードでは何にもこの例外をリンクしませんと言います。

Caused by: java.util.NoSuchElementException 
    at java.util.LinkedList$ListItr.previous(LinkedList.java:905) 

私のbuild.gradleは次のとおりです。

apply plugin: 'com.android.application' 

apply plugin: 'kotlin-android' 

apply plugin: 'kotlin-android-extensions' 

android { 
    compileSdkVersion 26 
    defaultConfig { 
     applicationId "this.app.id.is" // had to change appID for privacy 
     minSdkVersion 21 
    targetSdkVersion 26 
    versionCode 1 
    versionName "1.0" 
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
buildToolsVersion '26.0.2' 
} 

dependencies { 
    implementation fileTree(dir: 'libs', include: ['*.jar']) 
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" 
    implementation 'com.android.support:appcompat-v7:26.1.0' 
    implementation 'com.android.support.constraint:constraint-layout:1.0.2' 
    compile 'com.android.support:recyclerview-v7:26.1.0' 
    compile 'com.theartofdev.edmodo:android-image-cropper:2.5.+' // Third-party library. Copyright 2016, Arthur Teplitzki, 2013, Edmodo, Inc 
    testImplementation 'junit:junit:4.12' 
    androidTestImplementation 'com.android.support.test:runner:1.0.0' 
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.0' 
} 

このエラーを解決する方法についてご意見があれば、助けてください。あなたの実行コンフィギュレーションの編集実行構成ウィンドウ内

答えて

0

、それが無効になっていると、それは違いはありません実行構成

+0

に高度なプロファイリングフィールドを無効にします。しかし、ありがとう。 –

関連する問題