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
9
votes
1 answer

Execution failed for task ':bintrayUpload'. > Could not create version '1.1-Final TestApp': HTTP/1.1 400 Bad Request

I am working on one library project in android. I want to upload my library to the JCenter. I have created bintray account etc & followed all steps which are mentioned here. I did below changes in my application module & library module. Application…
8
votes
3 answers

Android Build Tools Gradle 2.3.2

The dependency com.android.tools.build:gradle:2.3.2 does not exists on jcenter. Why is that ? I had the update yesterday on Android Studio :/
ChristopheCVB
  • 7,269
  • 1
  • 29
  • 54
8
votes
4 answers

Android Studio : How to find latest version number of google specific libraries?

How to find latest version number of google specific libraries from repositories (jcenter etc..) to include in gradle dependencies in Android Studio. For non google libraries generally I can make a search in jcenter itself. But not able to…
8
votes
1 answer

How can I use Bintray jcenter for free?

I have read articles on how to publish an android studio library. Each article says to do it through Bintray. How can I use Bintray for publishing an Android library for free? It is asking me to register an organisation and pay after a month of…
khetanrajesh
  • 300
  • 3
  • 13
8
votes
2 answers

Task 'install' is ambiguous in root project 'TestApp'. Candidates are: 'installDebug', 'installDebugAndroidTest'

I am working on one library project in android. I want to upload my library to the JCenter. I have created bintray account etc & followed all steps which are mentioned here…
user1986760
  • 813
  • 2
  • 10
  • 19
8
votes
1 answer

How to upload module to JCenter using gradle bintray plugin?

I am sorry if I am being too stupid but I just can't make it work... I have an Android Module Project in AS that I want to upload to JCenter - using gradle bintray plugin from JFrog. I follow this tutorial in order to create the repository on…
E. Fernandes
  • 3,889
  • 4
  • 30
  • 48
8
votes
1 answer

How to publish a closed source library to jCenter?

Is it possible to publish a private SDK to jCenter? I already set up everything and the upload to bintray works fine, however I want to publish the .aar library but not the java docs and the java source. I've seen some libraries upload an empty…
keepitterron
  • 1,052
  • 1
  • 8
  • 12
7
votes
1 answer

My Android library not suggest to upgrade new version in gradle after I published new version to jcenter

I have published one library called SmartToolbar to jcenter successfully. But I have one problem when I update it to new version and publish it again, it does not show suggestion message to update to new version in gradle. Currently, the latest…
Chivorn
  • 2,203
  • 2
  • 21
  • 37
7
votes
0 answers

Android Studio 3.1: Could not find gradle-core.jar (gradle-core-3.1.0.jar)

I've just installed Android Studio 3.1 over previous version of android. When I try to create new project, during project build it stops and prompts below error. I've used many solution but it did not help. Here is the error message: Error:Could…
VSB
  • 9,825
  • 16
  • 72
  • 145
7
votes
0 answers

How long does it usually take bintray to sync to jcenter?

I have uploaded my library here: https://bintray.com/cuipengfei/maven/autoupdateapk It has been approved to link to jcenter yesterday. I can even get search results in jcenter: https://bintray.com/search?query=autoupdateapk But when I add the…
Cui Pengfei 崔鹏飞
  • 8,017
  • 6
  • 46
  • 87
7
votes
1 answer

Execution failed for task ':bintrayUpload'.

I want to upload my library to jecenter. I have created bintray account etc & followed all steps which are mentioned here. I did below changes in my application module & library module. //Library build.gradle apply plugin:…
Dennis Lu
  • 762
  • 2
  • 9
  • 21
7
votes
0 answers

Why can jcenter not resolve a dependency while mavenCentral can?

I have a project with just two dependencies, the relatively standard appcompat-v7 and ion. So my gradle files are pretty straightforward: Project buildscript { repositories { jcenter() } dependencies { classpath…
Tim
  • 41,901
  • 18
  • 127
  • 145
7
votes
1 answer

Trouble downloading my published files on Bintray from JCenter

I'm developing a very basic Gradle plugin (mainly to get experience) and I've published a version to my Bintray repository which should be viewable here. I've linked my repository to JCenter (and can find my plugin here) and now, to test it all…
Tagc
  • 8,736
  • 7
  • 61
  • 114
6
votes
2 answers

mavenCentral() is not working instead jcenter()

mavenCentral() is not working instead jcenter(). When I use mavenCentral() I am getting below error message, Could not HEAD 'https://google.bintray.com/flexbox-layout/com/google/android/flexbox/2.0.1/flexbox-2.0.1.pom'. Received status code 403 from…
Amit Yadav
  • 32,664
  • 6
  • 42
  • 57
6
votes
1 answer

Migrating from deprecated jcenter - issue with Google Places library

I am trying to remove jcenter() from my project because it is deprecated. But I am using com.google.android.libraries.places:places:2.4.0 dependency that is currently the latest version, that is outlined in official docs. And interesting thing, that…
Pasha Oleynik
  • 477
  • 5
  • 21
1 2
3
24 25