ZieIony / Carbon

Material Design implementation for Android 4.0+. Shadows, ripples, vectors, fonts, animations, widgets, rounded corners and more.

Home Page:https://androidreclib.wordpress.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Program type already present CoordinatorLayout$Behavior

galibimtiaz opened this issue · comments

I keep getting this error. I believe its from carbon.

Program type already present: android.support.design.widget.CoordinatorLayout$Behavior
Message{kind=ERROR, text=Program type already present: android.support.design.widget.CoordinatorLayout$Behavior, sources=[Unknown source file], tool name=Optional.of(D8)}

Here is my current settings.

android {

    compileSdkVersion 27
    buildToolsVersion "27.0.3"

    defaultConfig {
        applicationId "com.twiined.galib.pushlocation"
        minSdkVersion 14
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    dataBinding {
        enabled = true
    }

}

I would try to mess with support libraries versions. This looks like a known issue: https://stackoverflow.com/questions/49112190/error-program-type-already-present-android-support-design-widget-coordinatorl

Recently I bumped all libs used by Carbon. It's already in the repo. I'll make a release if that's the case.

So, 0.15.1 (with updated libs) was released a couple of days ago. Did it help? If not, were you able to solve your issue?

I haven't checked it , I will let you.

0.15.2 with some fixes is available on Maven. I'm closing this issue. Reopen if neccessary.

Add in app/build.gradle
implementation 'com.android.support:design:27.1.0'