question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Can you please publish your library to a Maven Central ? I can offer you some help for this

See original GitHub issue

Rationale: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ Quote (from a link above):

May 1st | Bintray, JCenter, GoCenter, and ChartCenter services will no longer be available

Further more: it seems that Signal Android app depends on this library (fetched via Bintray): https://github.com/signalapp/Signal-Android/blob/v5.3.12/app/build.gradle#L37

    maven { // textdrawable
        url 'https://dl.bintray.com/amulyakhare/maven'
        content {
            includeGroupByRegex "com\\.amulyakhare.*"
        }
    }

One more note: there is a slim chance that your library is also published to a springio-plugins-release but I will have to do some more research:

Issue Analytics

  • State:open
  • Created 3 years ago
  • Reactions:13
  • Comments:6

github_iconTop GitHub Comments

6reactions
ramseth001commented, Aug 17, 2021

@dejan2609 I have published a fork of the library to Jitpack for my use. Feel free to use it.

https://github.com/ramseth001/TextDrawable/

1reaction
mendhakcommented, Sep 26, 2021

This worked for me, with Jitpack enabled, I’ve used the commit hash from this repo:

implementation 'com.github.amulyakhare:TextDrawable:558677ea31'

Be sure to have jitpack in your repositories section:

maven {
        url "https://jitpack.io"
    }

Now let’s hope jitpack never shuts down… 😅

(I was unable to go with @ramseth001 's fork as I’m still targetting min SDK 16)

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to Publish Artifacts on Maven Central - Medium
Make sure your project is looking good, it's time to request permission to publish it on Maven Central! You need to register an...
Read more >
How to Publish Your Artifacts to Maven Central - DZone
If you're wondering how to publish your artifacts to Maven central, then this step-by-step guide from Mohammad Nadeem is for you.
Read more >
Publishing Android libraries to MavenCentral in 2021
MavenCentral is the place to be for Android libraries, but publishing there is no easy task. Here's the step-by-step guide on how to...
Read more >
Maven – Guide to uploading artifacts to the Central Repository
In order for users of Maven to utilize artifacts produced by your project, you must deploy them to a remote repository. Many open...
Read more >
Publish JAR To Central Maven Repository - Jenkov.com
Create a Sonatype Account and Claim your Namespace ... Before you, or your organization, can publish anything to the central Maven repository, you...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found