jaydeepw / poly-picker

Android library project for providing multiple image selection from the device.
406 stars 114 forks source link

Snapshot build, can not download ? #45

Closed cubehead closed 9 years ago

jaydeepw commented 9 years ago

Hi @cubehead can you tell me what error it throws?

cubehead commented 9 years ago

https://oss.sonatype.org/content/repositories/snapshots/net/the4thdimension/poly-picker/ there is no data. only xml.

jaydeepw commented 9 years ago

Ahh... let me see. I have been using it in one of my development projects and it works.

jaydeepw commented 9 years ago

Hey, here is the correct way of downloading the snapshot. You are using wrong url Add this at the top of your dependencies and it will work.

Please refer the doc if you find any issue. I have been using SNAPSHOT in one of my development apps and it works fine.

repositories {
    // for downloading polypicker dependency cwac-camera
    maven {
        url "https://repo.commonsware.com.s3.amazonaws.com"
    }

    // for downloading polypicker v1.0.13
    maven {
        url "https://oss.sonatype.org/content/repositories/releases/"
    }
}