Questions tagged [jcenter]

JCenter is a Maven repository that was used to find and share popular Apache Maven packages for use by Maven, Gradle, Ivy, SBT, etc. It is now deprecated and read-only.

JCenter was the place to find and share popular Apache Maven packages for use by Maven, Gradle, Ivy, SBT, etc. As of March 31st 2021, it will no longer be maintained by JFrog and has been set in read-only mode. Users of Gradle are warned about relying on its packages and asked to remove use of jcenter().

The official guidance from Android: Developers who publish artifacts on JCenter should migrate their packages to a new host, such as Maven Central. Developers who use dependencies from JCenter will need to find the new location of updated versions of those dependencies.

372 questions
25
votes
2 answers

How to publish Android Library on Android Arsenal?

i've made a small library for android : https://github.com/linkindrew/easyFTP Also uploaded on Bintray, waiting for publish and JCenter approval.How can i make it available to "Free" stuff section on Android Arsenal ? Here…
Adeel Ahmad
  • 990
  • 8
  • 22
22
votes
3 answers

How to properly specify jcenter repository in maven config?

In Gradle, I need simply add: repositories { jcenter() } What is the simplest and proper way to do the same in maven pom.xml or where can I get right url for jcenter repository.
Ihor Rybak
  • 3,091
  • 2
  • 25
  • 32
19
votes
4 answers

react-native Could not HEAD 'https://jcenter.bintray.com/com/facebook/react/react-native/maven-metadata.xml'

I created build yesterday and it was working fine . but when I try to create the release build today I got this. some if the question that are already asked here JCenter deprecation; impact on Gradle and Android: JCenter is at end of life" android…
Engr.Aftab Ufaq
  • 3,356
  • 3
  • 21
  • 47
16
votes
2 answers

React-Native Android - Could not find com.android.tools:common

It seems that somehow the android/tools/common library has been deleted (pom, jar). This caused many react native libraries that are using an old gradle version in their classpath (e.g com.android.tools.build:gradle:2.2.3) to not being able to…
16
votes
4 answers

Failed to resolve: firebase-iid-interop

This is Screen shot I've facing this problem can anyone help me? I search everywhere, but I can't find the solution Failed to resolve: firebase-common Open File Failed to resolve: firebase-iid-interop Open File Failed to resolve:…
14
votes
3 answers

Using jcenter and mavenCentral both in Android Studio

I am new to Android Studio. I am using libraries in my project. The maven central has updated version of facebook sdk, while rest of libraries I am using are available on jcenter. I want to know if we can use both these repositories in our project.…
Nitish Kumar
  • 141
  • 1
  • 1
  • 4
13
votes
3 answers

jcenter Returns Error 403 Forbidden, what should we use instead?

Seems jcenter service does not work at all and returns 403 Forbidden and also deprecated in IntelliJ products (Like Android Studio) What should be used instead? https://jcenter.bintray.com/
Amir Hossein Ghasemi
  • 20,623
  • 10
  • 57
  • 53
12
votes
2 answers

Could not find org.koin:koin-core:2.2.2

I have recently removed jcenter() repository from the project-level build Gradle. Since then Koin (version: 2.2.2) started giving me the compile-time error below: Could not find org.koin:koin-core:2.2.2
Aydinozkan
  • 2,508
  • 2
  • 21
  • 26
10
votes
2 answers

How to update library for new version in Bintray?

I published my library to jCenter as v1.0.0 by using novoda/bintray-release at the first time. Actually I want to update it as v1.0.1, how can i do it? [EDITED] I added the image for release note of another library as below.
kimkevin
  • 2,202
  • 1
  • 26
  • 48
9
votes
7 answers

Android Studio 3.1.4 Gradle Sync Failed

Whenever I create a new project in Android Studio it fails at Gradle Sync and always the same error: Connection timed out: connect org.gradle.internal.resource.transport.http.HttpRequestException: Could not GET…
HF_
  • 689
  • 3
  • 9
  • 22
9
votes
1 answer

Why does the order of imported repositories in build.gradle make or break the project?

Please explain why the first code gives me syncing errors while the second doesn't. allprojects { repositories { jcenter() google() } } Failed to resolve: play-services-base Open File Failed to resolve:…
9
votes
2 answers

Cannot connect to jcenter() in android studio

I'm trying to import MusicBobber library in android studio. I had download and import the example project but when I sync the project this error showed up: Error:A problem occurred configuring project ':app'. A problem occurred configuring…
Shima Erfan
  • 335
  • 1
  • 5
  • 19
9
votes
4 answers

How to generate gpg signing keys in bintray for jcenter in windows

I am unable to get GPG signing keys. Please any one tell me. Thanks How to generate gps signing keys in windows for jcenter
Krishna
  • 1,556
  • 13
  • 21
9
votes
1 answer

Adding JCenter into Intellij IDEA

I need to add https://jcenter.bintray.com/ into IntelliJ IDEA. IJ should be able to find and update packages from JCenter as it does for Maven Central. Currently when I add the URL to the list of maven repos, it complains "No repositories found". …
voddan
  • 31,956
  • 8
  • 77
  • 87
9
votes
2 answers

Is gradle possible to use maven repository with higher priority than jcenter

Gradle can set multiple repositories, e.g. maven and jcenter. But I realized gradle always use jcenter first even if I put maven before jcenter (as below). Is it possible to make maven (local repo, and faster) have higher priority? ## in file…
MK at Soho
  • 322
  • 1
  • 3
  • 10
1
2
3
24 25