mikepenz/Android-ActionItemBadge

Error in syncing

Closed this issue · 1 comments

My Gradle File looks like:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.example.genericapp"
        minSdkVersion 17
        targetSdkVersion 23
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

buildscript {
    repositories {
        jcenter()
    }
}

dependencies {

    repositories {
        maven { url "https://jitpack.io" }
        maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
    }

    //from jar
    compile files('libs/picasso-2.5.2.jar')
    compile files('libs/gson-2.5.jar')

    //from libraries
    compile project(':libraries:PersistentSearch')

    //from online
    compile('com.github.afollestad.material-dialogs:core:0.8.5.3@aar') {
        transitive = true
    }
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.slider:library:1.1.5@aar'
    compile 'com.android.support:support-v4:23.1.1'


    compile 'com.mikepenz:actionitembadge:3.2.1@aar'
    //SUB-DEPENDENCIES
    //Android-Iconics - used to provide an easy API for icons
    compile 'com.mikepenz:iconics-core:2.5.4@aar'

}

After syncing grade I am getting this error
Failed to resolve: com.mikepenz:actionitembadge:3.2.1

@vatsrahul62 sorry that was my issue. missed to release the update on maven central. did it a few moments ago. should be available within the next 30 minutes.