2017-08-31 46 views
4

我在通過Gradle構建應用程序時遇到問題,如下所示。並且我得到錯誤: 錯誤:(516)屬性「font」已用不兼容的格式定義。 錯誤:(298)此處定義的原始屬性。 錯誤:(516)屬性「font」已用不兼容的格式定義。 錯誤:(298)此處定義的原始屬性。錯誤:已用不兼容格式定義的屬性「字體」

但我沒有在我的模塊中找到使用「font」attr的地方。

請幫助我。

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    testCompile 'junit:junit:4.12' 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.3-alpha', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile('com.weiwangcn.betterspinner:library-material:1.1.0') { 
     exclude group: 'com.android.support', module: 'appcompat-v7' 
     exclude group: 'com.rengwuxian.materialedittext', module: 'library' 
    } 
    compile('com.quickblox:quickblox-android-sdk-chat:[email protected]') { 
     transitive = true 
    } 
    compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
     transitive = true; 
     compile 'com.stripe:stripe-android:+' 
    } 
    compile('com.crashlytics.sdk.android:answers:[email protected]') { 
     transitive = true; 
    } 
    compile 'com.quickblox:quickblox-android-sdk-core:[email protected]' 
    compile 'com.quickblox:quickblox-android-sdk-content:[email protected]' 
    compile 'com.quickblox:quickblox-android-sdk-messages:[email protected]' 

    compile 'com.android.support:appcompat-v7:26.0.1' 
    compile 'com.android.support:design:26.0.1' 
    compile 'com.android.support:cardview-v7:26.0.1' 
    compile 'com.android.support:recyclerview-v7:26.0.1' 
    compile 'com.android.support:leanback-v17:26.0.1' 
    compile 'com.android.support:customtabs:26.0.1' 
    compile 'com.rengwuxian.materialedittext:library:2.1.4' 
    compile 'com.bignerdranch.android:expandablerecyclerview:2.1.1' 
    compile 'com.github.bumptech.glide:glide:3.7.0' 
    compile 'com.daimajia.swipelayout:library:1.2.0' 
    compile 'ayar.oktay.library:advancedtextview:0.4.5' 
    compile 'de.hdodenhof:circleimageview:2.1.0' 
    compile 'jp.wasabeef:recyclerview-animators:2.2.4' 
    compile 'com.crystal:crystalrangeseekbar:1.1.1' 
    compile 'com.kyleduo.switchbutton:library:1.4.4' 
    compile 'me.relex:circleindicator:[email protected]' 
    compile 'com.google.code.gson:gson:2.8.0' 
    compile 'com.squareup.retrofit2:retrofit:2.2.0' 
    compile 'com.squareup.retrofit2:converter-gson:2.2.0' 
    compile 'com.squareup.okhttp3:okhttp:3.6.0' 
    compile 'com.squareup.okhttp3:logging-interceptor:3.6.0' 
    compile 'com.facebook.android:facebook-android-sdk:4.+' 
    compile 'com.android.support:multidex:1.0.1' 
    compile 'com.yalantis:ucrop:2.2.0' 
    compile 'com.yalantis:ucrop:2.2.0-native' 
    compile 'pub.devrel:easypermissions:0.1.9' 
    compile 'com.google.firebase:firebase-messaging:11.0.4' 
    compile 'com.google.android.gms:play-services-gcm:11.0.4' 


    compile 'com.jakewharton:butterknife:8.5.1' 
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' 
    testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' 
    debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5' 
    releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' 
    compile 'com.google.dagger:dagger:2.8' 
    annotationProcessor 'com.google.dagger:dagger-compiler:2.8' 
    debugAnnotationProcessor 'com.google.dagger:dagger-compiler:2.8' 
    compile 'io.reactivex:rxjava:1.2.2' 
    compile 'io.reactivex:rxandroid:1.2.1' 
    compile 'com.squareup.retrofit2:adapter-rxjava:2.2.0' 
    compile 'com.squareup.retrofit2:converter-gson:2.2.0' 
} 
apply plugin: 'com.google.gms.google-services' 

回答

2

在我的情況下,問題是在定義屬性"app:font"的庫中。 我刪除了那個庫和所有的地方寫在"app:font"和我的問題消失。

作爲附加示例: 如果您有錯誤AAPT: Attribute "iconTint" already defined with incompatible format那麼您應該在xml中搜索並刪除"app:iconTint"以解決此問題。

+0

謝謝#Dima Kozhevin。我重新命令庫依賴關係,之後這也得到了修復。 –

+0

如果我需要在我的應用程序中使用庫和「app:font」(實際上它已在代碼中的許多地方使用過),該怎麼辦?什麼是替代呢? – amar

相關問題