Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/212.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 无法合并索引。尝试了所有仍然不起作用的东西_Android_Android Studio_Android Gradle Plugin - Fatal编程技术网

Android 无法合并索引。尝试了所有仍然不起作用的东西

Android 无法合并索引。尝试了所有仍然不起作用的东西,android,android-studio,android-gradle-plugin,Android,Android Studio,Android Gradle Plugin,我试过: 1) 清理和重建。 2) 多重索引启用为true 但显示的错误仍然是:错误:任务执行失败:app:transformDexArchiveWithExternalLibsDexMergerForDebug” java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并dex 有任何建议如何修复它,请帮助 我的应用程序级渐变文件: apply plugin: 'com.android

我试过: 1) 清理和重建。 2) 多重索引启用为true

但显示的错误仍然是:错误:任务执行失败:app:transformDexArchiveWithExternalLibsDexMergerForDebug”

java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并dex

有任何建议如何修复它,请帮助

我的应用程序级渐变文件:

apply plugin: 'com.android.application'

android {
signingConfigs {
    config {
    }
}
compileSdkVersion 27
defaultConfig {
    applicationId "com.example.hp.facebook_login"
    minSdkVersion 19
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    debug {
    }
}
}

repositories {
mavenCentral()
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.facebook.android:account-kit-sdk:4.33.0'
implementation 'de.hdodenhof:circleimageview:2.2.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
    google()
    jcenter()
    //for Facebook SDK
    mavenCentral()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    }
   }
   allprojects {
repositories {
    google()
    jcenter()
}
}
 task clean(type: Delete) {
delete rootProject.buildDir
}
我的项目级渐变文件:

apply plugin: 'com.android.application'

android {
signingConfigs {
    config {
    }
}
compileSdkVersion 27
defaultConfig {
    applicationId "com.example.hp.facebook_login"
    minSdkVersion 19
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    debug {
    }
}
}

repositories {
mavenCentral()
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.facebook.android:account-kit-sdk:4.33.0'
implementation 'de.hdodenhof:circleimageview:2.2.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
    google()
    jcenter()
    //for Facebook SDK
    mavenCentral()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    }
   }
   allprojects {
repositories {
    google()
    jcenter()
}
}
 task clean(type: Delete) {
delete rootProject.buildDir
}

添加以下几行有助于我成功地删除错误: 这是新的应用程序级别的gradle文件,您可以比较并找到更改

    apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.example.hp.mkchat"
    minSdkVersion 19
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.google.firebase:firebase-core:11.4.2'
implementation 'com.google.firebase:firebase-auth:11.4.2'
implementation 'com.android.support:support-v4:27.1.1-beta1'
implementation 'com.google.firebase:firebase-database:11.4.2'
implementation 'com.google.firebase:firebase-storage:11.4.2'
implementation 'com.google.firebase:firebase-messaging:11.4.2'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.android.support:multidex:1.0.1'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.squareup.okhttp:okhttp:2.5.0'
implementation 'com.firebaseui:firebase-ui-database:3.1.0'
implementation 'id.zelory:compressor:2.1.0'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.6.+'
// ViewModel and LiveData
implementation "android.arch.lifecycle:extensions:1.1.1"

testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:0.5'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}

apply plugin: 'com.google.gms.google-services'

有时它来自于清单合并、AAPT故障、或第三方库故障。除了gradle错误的完整堆栈跟踪,您可以在gradle控制台或更新的android studio的构建选项卡中找到,您是否尝试在android studio中禁用了
即时运行
?如果有任何错误,请检查您的
AndroidManifest.xml
。当我尝试运行模拟器时,只有mergeDex错误出现,否则当我生成错误时,将不显示该错误@KooroshGhorbani你可能是对的,那么解决方案是什么?不@Shashanth,我们从哪里可以禁用它?