Can you please publish your library to a Maven Central ? I can offer you some help for this
See original GitHub issueRationale: 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:
- Created 3 years ago
- Reactions:13
- Comments:6
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@dejan2609 I have published a fork of the library to Jitpack for my use. Feel free to use it.
https://github.com/ramseth001/TextDrawable/
This worked for me, with Jitpack enabled, I’ve used the commit hash from this repo:
Be sure to have jitpack in your
repositories
section: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)