Android-Debug-Database icon indicating copy to clipboard operation
Android-Debug-Database copied to clipboard

Please move your library to mavencentral jcenter is not longer available

Open vhernandezvitu opened this issue 2 years ago • 7 comments

Since jcenter is down people who use your library cannot compile

vhernandezvitu avatar Jan 13 '22 00:01 vhernandezvitu

+1. Even though your particular library is available in maven repository, some of your dependencies are using jcenter. Could you please update those?

\--- com.amitshekhar.android:debug-db:1.0.6 FAILED
+--- com.amitshekhar.android:debug-db:1.0.6 FAILED
+--- com.amitshekhar.android:debug-db:1.0.6 FAILED
|    |    +--- com.android.volley:volley:1.1.1 FAILED
|    |    |    +--- com.facebook.yoga:proguard-annotations:1.14.1 FAILED
|    |    |    \--- com.facebook.fbjni:fbjni-java-only:0.0.3 FAILED
+--- com.amitshekhar.android:debug-db:1.0.6 FAILED

These were the problematic libraries I could find. Thanks a ton for your amazing library.

arunkrishnakv avatar Jan 19 '22 13:01 arunkrishnakv

+1 Please, please. Your library is great !

powell avatar Jan 20 '22 11:01 powell

+1

Could not find com.amitshekhar.android:debug-db:1.0.6.
Required by:
    project :app
Search in build.gradle files

huhuang03 avatar Feb 18 '22 02:02 huhuang03

+1

Really helpful library. Please migrate

CleatonPais avatar Mar 31 '22 07:03 CleatonPais

the library is in jitpack. Use like this:

settings.gradle ...

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}

...

Asutosh11 avatar Jun 29 '22 17:06 Asutosh11

Please, migrate

quillalady avatar Jul 09 '22 14:07 quillalady

Please following steps to import this lib

Step 1. Add the JitPack repository to your build file

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2. Add the dependency

dependencies {
	     debugImplementation 'com.github.amitshekhariitbhu.Android-Debug-Database:debug-db:v1.0.6'
	}

Reference - https://www.jitpack.io/#amitshekhariitbhu/Android-Debug-Database/v1.0.6

ajinkya-iam avatar Nov 23 '22 08:11 ajinkya-iam