jaydeepw / poly-picker

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

can not build gradle when using 'net.the4thdimension:poly-picker:1.0.13-SNAPSHOT' dependency #60

Closed pawarlalit29 closed 9 years ago

pawarlalit29 commented 9 years ago

Error:(70, 13) Failed to resolve: net.the4thdimension:poly-picker:1.0.13-SNAPSHOT

jaydeepw commented 9 years ago

Check this

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

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

}

dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:21.0.+' // and other dependencies

// PolyPicker dependency.
compile 'net.the4thdimension:poly-picker:1.0.13-SNAPSHOT'

}

jaydeepw commented 9 years ago

This is mentioned in the docs. Please refer.

pawarlalit29 commented 9 years ago

still facing issue Failed to resolve: net.the4thdimension:poly-picker:1.0.13-SNAPSHOT

pawarlalit29 commented 9 years ago

work in these dependency 'compile 'net.the4thdimension:poly-picker:1.0.11'' not on 1.0.13-SNAPSHOT

pawarlalit29 commented 9 years ago

thanks for the reply i found that solution in #45 use - compile 'net.the4thdimension:poly-picker:1.0.13' - this dependency, there is no data in your snapshot directory

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