FragNav icon indicating copy to clipboard operation
FragNav copied to clipboard

Migration from JCenter

Open jakoss opened this issue 3 years ago • 16 comments

In may this library won't be available from JCenter: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

Please migrate this library to some other repository

jakoss avatar Feb 08 '21 11:02 jakoss

@jakoss Thanks for the reminder. Will do that soon.

ncapdevi avatar Feb 08 '21 18:02 ncapdevi

@ncapdevi Any updates on this? Maybe you need help

gildor avatar Feb 25 '21 08:02 gildor

Any updates?

mehmetdelikaya avatar May 06 '21 17:05 mehmetdelikaya

Hi @ncapdevi

I understand migration from jcenter() to mavenCentral() is time taking task and you may not have time for it. But at least release the .aar file so we can put in project and use it till you not migrate the binary to some other source.

umarata avatar May 11 '21 07:05 umarata

@ncapdevi Any updates on this one?

vlazdra avatar May 11 '21 07:05 vlazdra

For those having issues with JCenter() here's my temporary solution, replace version if needed

implementation 'com.github.ncapdevi:FragNav:3.2.0'

jtorrestobena avatar May 18 '21 10:05 jtorrestobena

@jtorrestobena interesting, is github hosting gradle package automatically for repository?

jakoss avatar May 18 '21 11:05 jakoss

Sorry forgot to mention you need jitpack for this:

See here: https://jitpack.io

jtorrestobena avatar May 18 '21 12:05 jtorrestobena

@jtorrestobena that is a good idea 👍 Just forked the library and gonna use it on my own git based repo until the library is moved from jcenter

mehmetdelikaya avatar May 24 '21 14:05 mehmetdelikaya

@jakoss @ncapdevi With all due respect, I think that's kind of easy. I published my repo by following this guide: https://medium.com/@ome450901/publish-an-android-library-by-jitpack-a0342684cbd0 I'm sorry if I was wrong.

VuHongKy avatar Jun 06 '21 11:06 VuHongKy

@jakoss @ncapdevi With all due respect, I think that's kind of easy. I published my repo by following this guide: https://medium.com/@ome450901/publish-an-android-library-by-jitpack-a0342684cbd0 I'm sorry if I was wrong.

Not sure why are addressing this to me, but difficulty isn't really an issue. It's main contributor time. But it's not that important now, since jfrog announced that repositories will be hosted as read only indefinitely.

jakoss avatar Jun 06 '21 12:06 jakoss

@jakoss Thank you!

VuHongKy avatar Jun 06 '21 12:06 VuHongKy

But it's not that important now

it's still important. Jcenter is unreliable, it had multiple big outages recently. Many projects do not allow jcenter() repository and jcenter dependencies. In our case we re-published lib to our own private repo to get rid of jcenter

Also suggested publishing to jitpack is also not an option for many projects because of it not-secure nature and slow performance.

The library should be published to maven central

gildor avatar Apr 05 '22 02:04 gildor

Hi @gildor, I would recommend you to fork the library and use it from your own repo, something like this,

implementation 'com.github._yourgithubname_:FragNav:3.2.0'

mehmetdelikaya avatar Apr 05 '22 11:04 mehmetdelikaya

This is what we are already doing, as I said in my previous message

gildor avatar Apr 06 '22 02:04 gildor

For anyone who wants to re-publish this library to your own repository, you can refer to this PR which includes changes to allow propagate start/pause lifecycle events on show/hide of fragment, but also on the same PR we updated publishing config to be compatible with recent Gradle and Android Gradle Plugin. To publish to own repo, just change version/group in build.gradle and set gradle properties: publishRepoUrl publishRepoUsername publishRepoPassword

Like:

./gradlew publish -PpublishRepoUrl=URL -PpublishRepoUsername=USERNAME -PpublishRepoPassword=PASSWORD

gildor avatar Apr 06 '22 02:04 gildor