Open jaredsburrows opened 8 years ago
Same happens to me, with the differnce that using
compile 'net.rdrei.android.dirchooser:library:3.2'
won't compile.
same here
Same here
same here
So sad
same issue, please check it.
same here...
I am too experiencing this issue. Seems like this issue has repeated, follow this answer in an older issue to resolve this issue -
https://github.com/passy/Android-DirectoryChooser/issues/65#issuecomment-202602924
Just make sure that you are adding repository URL to your top level gradle file's "allprojects" part.
@rohannexialabs Actually not only repository URL should be added but also com.gu:option dependency.
I have the same problem. :(
me too. I just downloaded the lib and included it and I think I was okay.
Copying the comment @rohannexialabs referred to:
repositories {
maven { url 'http://guardian.github.com/maven/repo-releases' }
}
dependencies {
compile 'com.gu:option:1.3'
compile 'net.rdrei.android.dirchooser:library:3.2@aar'
}
This fixed it for me.
check out the option project manually is also a way.
Any update on this?
No update from my end. Until the guardian decides to publish this library elsewhere or someone ports this to another compatible library we'll probably be stuck with the manual declaration.
Why rely on this then? Can you use either another library or no library?
On Jul 26, 2017 10:22 AM, "Pascal Hartig" notifications@github.com wrote:
No update from my end. Until the guardian decides to publish this library elsewhere or someone ports this to another compatible library we'll probably be stuck with the manual declaration.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/passy/Android-DirectoryChooser/issues/86#issuecomment-318123504, or mute the thread https://github.com/notifications/unsubscribe-auth/ABqMSLq_k7E2qmtQU5vBEC_hULxw3MANks5sR3XsgaJpZM4IDxzi .
Another library should be fine. This was the only one that was around back then, I'm sure there are other ones now. Happy to take a look at a PR about this.
On Wed, Jul 26, 2017 at 18:39 Jared Burrows notifications@github.com wrote:
Why rely on this then? Can you use either another library or no library?
On Jul 26, 2017 10:22 AM, "Pascal Hartig" notifications@github.com wrote:
No update from my end. Until the guardian decides to publish this library elsewhere or someone ports this to another compatible library we'll probably be stuck with the manual declaration.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/passy/Android-DirectoryChooser/issues/86#issuecomment-318123504 , or mute the thread < https://github.com/notifications/unsubscribe-auth/ABqMSLq_k7E2qmtQU5vBEC_hULxw3MANks5sR3XsgaJpZM4IDxzi
.
— You are receiving this because you commented.
Reply to this email directly, view it on GitHub https://github.com/passy/Android-DirectoryChooser/issues/86#issuecomment-318127941, or mute the thread https://github.com/notifications/unsubscribe-auth/AAAmssB2nF_8KWFgir1_4L6pMi4WTetMks5sR3m8gaJpZM4IDxzi .
--
Pascal Hartig Software Engineer
http://passy.me/ Twitter: https://twitter.com/passy Google+: http://gplus.to/passy
From previous answers but with an https
url and implementation
instead of compile
:
repositories {
maven { url 'https://guardian.github.io/maven/repo-releases/' }
}
dependencies {
implementation 'com.gu:option:1.3'
implementation 'net.rdrei.android.dirchooser:library:3.2@aar'
}
When using
compile 'net.rdrei.android.dirchooser:library:3.2@aar'
, I get the following error:I have to use
compile 'net.rdrei.android.dirchooser:library:3.2
instead.