googlesamples / easypermissions

Simplify Android M system permissions
https://firebaseopensource.com/projects/googlesamples/easypermissions/
Apache License 2.0
9.87k stars 1.46k forks source link

Library artifacts are published to jcenter only, which will close in 3 months #319

Closed entibaldi closed 3 years ago

entibaldi commented 3 years ago

Basic Information

Hello! Your library is published only to jcenter. Please consider publishing it also to mavenCentral, as jcenter is shutting down in May.

Here is some info on how to publish artifacts to mavenCentral.

samtstern commented 3 years ago

@entibaldi thanks for the issue! We're looking into it

adrynov commented 3 years ago

Any updates on this issue?

Time is running out.

This works for now

allprojects {
    repositories {
        google()
        mavenCentral()

        // https://jeroenmols.com/blog/2021/02/04/migratingjcenter/
        jcenter() {
            content {
                includeModule("pub.devrel", "easypermissions")
            }
        }
    }
}
samtstern commented 3 years ago

I just published version 3.0.0 to Maven Central, it should be available now or maybe in a few minutes when the caches clear.

samtstern commented 3 years ago

Confirmed: https://repo1.maven.org/maven2/pub/devrel/easypermissions/3.0.0/

adrynov commented 3 years ago

This was swift, thank you!

gsapo commented 2 years ago

Hello, Can you move the "pub.devrel:easypermissions:2.0.1" also to mavenCentral()? Because I'm using the Android Support Library and JCenter is down. Thank you!