Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle Dependency #1

Closed
caitlynoleykowski opened this issue Jun 5, 2020 · 5 comments · Fixed by #11
Closed

Gradle Dependency #1

caitlynoleykowski opened this issue Jun 5, 2020 · 5 comments · Fixed by #11

Comments

@caitlynoleykowski
Copy link

Hey, is there any way to use this library via a gradle dependency rather than having to import the whole codebase?
I intended to use
implementation "com.github.andreysber:flowreactivenetwork:1.0.0"
but I see there is no release version.

Thank you

@phansier
Copy link
Owner

phansier commented Jun 5, 2020

@caitlynoleykowski Thank you for interest. There is not yet. I will try to publish it soon.
You can take it as a git submodule or copy and include as a Gradle module now.

@phansier
Copy link
Owner

phansier commented Jun 5, 2020

@caitlynoleykowski I have published the library in bintray. Now you can use it with
implementation 'ru.beryukhov:flowreactivenetwork:1.0.0'

@caitlynoleykowski
Copy link
Author

@AndreySBer Thanks! I've tried to use
implementation 'ru.beryukhov:flowreactivenetwork:1.0.0'
in my gradle dependencies but it's not found.
Currently for repositories I have

repositories {
        google()
        jcenter()
        mavenLocal()
        maven { url "https://jitpack.io" }
        maven { url 'http://dl.bintray.com/kotlin/kotlin-eap' }
}

Do you know if there is something additional I will need to put for repositories so that it can find yours in bintray?

@phansier
Copy link
Owner

@caitlynoleykowski Thanks for your patience. There was a problem with initial publication.
As for the library is not published in JCenter yet, you should temporary add in your repositories:

maven {
            url "https://dl.bintray.com/andreyberyukhov/FlowReactiveNetwork"
        }

and use the 1.0.2 version.

@phansier
Copy link
Owner

There are plans to publish this library in mavenCentral as soon as one of the issues #5 #9 #10 will be merged.

@phansier phansier linked a pull request Aug 20, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants