Questions tagged [jitpack]

JitPack.io is an easy to use package repository for GitHub. It builds GitHub projects on demand and publishes ready-to-use packages.

jitpack.io is an easy to use package repository for JVM and Android.
JitPack builds GitHub projects on demand and provides ready-to-use packages.

240 questions
1
vote
1 answer

Build library Github with Jitpack include dependencies

I'm building a library with jitpack.io I was able to build and compile into the application successfully, but the problem here is that in the library there includes a number of other libraries compiled into implementation…
Chanh
  • 433
  • 3
  • 12
1
vote
0 answers

Failed to resolve: 'com.github.kolavar:android-support-v4-preferencefragment:-SNAPSHOT'

I'm trying to use this GitHub library https://github.com/kolavar/android-support-v4-preferencefragment with my Android app. Using the instructions given by https://jitpack.io/#kolavar/android-support-v4-preferencefragment I add maven { url…
John
  • 137
  • 10
1
vote
1 answer

Can't add library from jitpack in Gradle

I am trying to use the following library: https://github.com/lguipeng/AnimCheckBox I have added maven { url "https://jitpack.io" } like so: allprojects { repositories { google() jcenter() maven { url…
Foobar
  • 7,458
  • 16
  • 81
  • 161
1
vote
1 answer

How to Link GitHub Repository As Maven Dependency

I create a GitHub Repository(Private) and wanted to Use it as a Maven Dependency for Some Other Projects (Private). Accordingly I have tried out following approaches in the internet and still I could able to import the maven dependencies on the…
Amutheezan
  • 345
  • 1
  • 8
  • 24
1
vote
1 answer

Failed to release a library on Jitpack

I am not able to release library on jitpack. Getting following error: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':app'. > Failed to find target with hash string 'android-27' in:…
Ali_Waris
  • 1,944
  • 2
  • 28
  • 46
1
vote
0 answers

Including single aar modules of a library project through jitpack / Github

I`m maintaining an android project with just an android library module in it. This is accessed by other projects through an upload from Git to jitpack and then referencing it as dependency in gradle. implementation…
Lemao1981
  • 2,225
  • 5
  • 18
  • 30
1
vote
1 answer

Jitpack - unable to import android library

I forked a public MediaPicker library and forked it on Github. After making some changes to the library, I made a release of the project. I checked JitPack which is showing all ok for the release but I am still unable to import it. Following is the…
Rohan Kandwal
  • 9,112
  • 8
  • 74
  • 107
1
vote
2 answers

Jitpack.io is not working with sbt 1.0

I have a Git project that runs with sbt 1.0. I wanted to publish it with jitpack.io. But I get the following error: Downloading sbt launcher for 1.0.2: From …
pme
  • 14,156
  • 3
  • 52
  • 95
1
vote
0 answers

Compile an Android library that contains a third-party .aar dependency

I am creating my first, privately hosted Android library on jitpack. Issue: My hosted library contains a third-party .aar dependency (Spotify player SDK). The third-party has not yet hosted their library, so I'm stuck with referencing that…
Ryan
  • 3,414
  • 2
  • 27
  • 34
1
vote
1 answer

Android jitpack wont build from my repo

I am trying to use a fork of a library using gradle and jitpack. I have the jitpack.io repositories setup (and working with another fork of another library). The new fork I'm trying to include is the following :…
PhilippeAuriach
  • 2,418
  • 2
  • 22
  • 41
1
vote
1 answer

Push Android library from GitHub to Android Arsenal

I've developed an Android library and successfully uploaded to GitHub. Here is my GitHub library repo : https://github.com/sangeethnandakumar/TestTube I'm using JITPACK PACKAGE repository to build the dependency. It works like anything and I…
Sangeeth Nandakumar
  • 1,362
  • 1
  • 12
  • 23
1
vote
1 answer

JitPack and local development

We are using JitPack for development, as we have several modules, and it is very easy to propagate changes across. However, if I want to build something locally, I have an issue. We used to install artifact with gradle, so I was able to build some…
igr
  • 10,199
  • 13
  • 65
  • 111
1
vote
3 answers

Failed to resolve: com.github.PhilJay.MPAndroidChart:v2.2.4

When building, Gradle gave me the Failed to resolve: com.github.PhilJay:MPAndroidChart:v2.2.4 error. I already added jitpack in build.gradle here: buildscript { repositories { jcenter() } dependencies { classpath…
Compaq LE2202x
  • 2,030
  • 9
  • 45
  • 62
1
vote
1 answer

Gradle Build fails for lib:androidJavadocs

I can't find the solution for the following case: I try to add a dependency to my project for one of my libraries I've been working on for some days. I'm doing this for some other libs via: https://jitpack.io/ But ever since I've been adding some of…
1
vote
1 answer

Android NDK pulling in JNI stuff with gradle and jitpack?

I have an android library project on github. Its basically the java port of the popular BASS library: http://www.un4seen.com/ All the .so files are in a directory /jniLibs found in src/main. I can make a release and am able to grab it using jitpack.…
Orbit
  • 2,985
  • 9
  • 49
  • 106