当我尝试构建我的应用程序时,它的构建过程停止在logcat中显示以下消息,它显示错误

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.



我的build.gradle文件是
android {
compileSdkVersion 25
buildToolsVersion '26.0.1'
defaultConfig {
    applicationId "community.infinity"
    minSdkVersion 16
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.android.support:support-v4:25.3.0'
    compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'com.adamstyrc.cookiecutter:cookie-cutter:1.0.2'
compile 'com.allattentionhere:fabulousfilter:0.0.3'
compile 'com.github.florent37:diagonallayout:1.0.6'
compile 'com.flaviofaria:kenburnsview:1.0.7'
compile 'com.github.developer-shivam:FeaturedRecyclerView:1.0.0'
compile 'com.xujinyang.BiuEditText:library:1.4.1'
compile 'com.vstechlab.easyfonts:easyfonts:1.0.0'
compile 'gun0912.ted:tedbottompicker:1.0.12'
compile 'com.github.nkzawa:socket.io-client:0.5.2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
compile 'org.lucasr.twowayview:twowayview:0.1.4'
compile 'org.lucasr.twowayview:core:1.0.0-SNAPSHOT@aar'
compile 'org.lucasr.twowayview:layouts:1.0.0-SNAPSHOT@aar'
compile 'com.android.support:multidex:1.0.1'

testCompile 'junit:junit:4.12'

}

最佳答案

您正在使用 SNAPSHOT 版本:

编译'org.lucasr.twowayview:core:1.0.0-SNAPSHOT@aar'

编译'org.lucasr.twowayview:layouts:1.0.0-SNAPSHOT@aar'

STABLE 版本都同时

编译'org.lucasr.twowayview:twowayview:0.1.4'

尝试删除其中任何一个。您一次只能使用一个。

访问:
https://github.com/lucasr/twoway-view

08-05 09:08