Crouton依赖于图书馆但不是图书馆本身

时间:2014-06-27 11:17:07

标签: android gradle android-studio crouton

我正在使用带有Crouton库的Android Studio 0.6.1,今天在gradle sync之后我遇到了下一个错误:

Error:A problem occurred configuring root project 'project_name'.
Module version de.keyboardsurfer.android.widget:crouton:1.8.4 depends on libraries but is not a library itself

那是怎么回事?

2 个答案:

答案 0 :(得分:61)

此问题是由于com.android.support-v4最近更新。

所以我改变了

compile 'com.android.support:support-v4:20.+'

compile 'com.android.support:support-v4:19.1.+'

和烤饼很好用

不同的解决方法是使用@aar:

compile('de.keyboardsurfer.android.widget:crouton:1.8.4@aar') {
    exclude group: 'com.google.android', module: 'support-v4'
}

答案 1 :(得分:7)

我的解决方案根据@Revedko的回答,使用@aar和将所有支持更改为低于21的版本 - > 20。+

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.loopj.android:android-async-http:1.+'
    compile "com.bugsense.trace:bugsense:3.5"
    compile('de.keyboardsurfer.android.widget:crouton:1.8.4@aar') {
        exclude group: 'com.google.android', module: 'support-v4'
    }
    compile 'com.android.support:appcompat-v7:20.+'
    compile 'com.google.android.gms:play-services:5.0.77'
}