applidium / HeaderListView

Android ListView with sticky headers
http://applidium.com/en/news/headerlistview_for_android/
Other
313 stars 96 forks source link

Publish the project as .aar to maven #6

Closed meierjan closed 10 years ago

meierjan commented 10 years ago

I would love to see a .aar file published to maven, so that it is even more easy to use!

tokou commented 10 years ago

Hi, We are looking into this. We'll be back in touch soon! Happy holidays

meierjan commented 10 years ago

@tokou any progress?

Wavesonics commented 10 years ago

+1

tokou commented 10 years ago

Hi, We uploaded a snapshot to maven. You can find it here : http://oss.sonatype.org/content/repositories/snapshots/com/applidium/headerlistview/headerlistview/1.0.2-SNAPSHOT/

You can include it in your gradle build file this way :

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.8.+'
    }
}
apply plugin: 'android'

repositories {
    maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
    mavenCentral()
}

dependencies {
    compile 'com.applidium.headerlistview:headerlistview:1.0.2-SNAPSHOT'
}

Really sorry about the delay ! Cheers