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

Java does not de-compile correctly

Im developing for android and compiling with gradle from git using jitpack.io Im trying to use this library from git for functional programming: fj - functional programmming for Java 7 I ran the code and got errors even though everything is tested.…
Gur
  • 111
  • 8
1
vote
1 answer

Adding two libraries creating error in Android studio

I have created an Android library and uploaded that to GitHub and using the same using jitpack.io. Now I created a modulelibrary for GPS location. Untill and unless I add the GPSlibrary it works fine. Once I add the Gps library in gradle file. The…
Ari
  • 1,296
  • 1
  • 18
  • 36
1
vote
2 answers

Android library project can not resolve jitpack dependency

I have an android library uses a module on jitpack, so I change my gradle.build apply plugin: 'com.android.library' repositories { mavenCentral() // jitpack maven maven { url "https://jitpack.io" } } ... dependencies { …
Xeijp
  • 853
  • 1
  • 7
  • 18
1
vote
0 answers

JitPack doesn't create an artifact for a GitHub release

The JitPack build log for release 1 doesn't load. Yet, the JitPack build log for latest, which isn't as new as 1, does load. Why is there no JitPack log for release 1? JitPack docs say it should work fine: That’s it! The first time you request a…
Thufir
  • 8,216
  • 28
  • 125
  • 273
1
vote
1 answer

how to grab the latest release from GitHub with JitPack?

Can JitPack be configured just to grab the latest release? Or, do I need to create releases manually? GitHub has a simple process to get the latest: On GitHub, navigate to the main page of the repository. Releases tabUnder your repository name,…
Thufir
  • 8,216
  • 28
  • 125
  • 273
1
vote
0 answers

Netbeans is not picking up the correct release for a JAR dependency with jitpack

This build file for the client specifies the dev release, using jitpack, of the library: apply plugin: 'java' apply plugin: 'application' apply plugin: 'maven' mainClassName = 'net.bounceme.mordor.hello.client.HelloClient' sourceCompatibility =…
Thufir
  • 8,216
  • 28
  • 125
  • 273
1
vote
1 answer

Loading a library in Gradle using JitPack

I am working on an Android project, I use the MPChart library from Github. For now I have a folder on my project with all the source code of the library, but I want to load it using Gradle instead. I found a tool to get a Git repository into your…
1
vote
2 answers

unable to add jitpack components in android studio

I am unable to add jitpack components in android studio I have added these lines to my repositories maven { url "https://jitpack.io" } } but still unable to add any jitpack repository like this compile…
Ata
  • 12,126
  • 19
  • 63
  • 97
0
votes
0 answers

Android library imported via jitpack.io results in "package does not exist" error, though previous versions can be imported fine

I have an open-source Android library uploaded on GitHub (I am the author of the library). A day back, I released a new version of the library, making it compatible with Android SDK 34. After creating the release on GitHub, I could successfully…
Wrichik Basu
  • 1,005
  • 17
  • 28
0
votes
1 answer

Adding a Jitpack dependency using intellij build system

Making a new Kotlin project using the IntellIJ build system (managed by the IDE). I would like to add a dependecy hosted on jitpack to my project: https://jitpack.io/#OldManAlpha/Monopoly-Deal/ There's info on the IntellIJ website on how to add a…
shmee
  • 3
  • 2
0
votes
0 answers

Can't publish module from android studio to jitpack

I am trying to publish an android app module to https://jitpack.io/ but I'm getting the following error: A problem was found with the configuration of task ':app:processDebugMainManifest' (type 'ProcessApplicationManifest'). - In plugin…
0
votes
0 answers

declares a dependency from configuration 'compileOnly' to configuration 'runtime' which is not declared in the descriptor for

My project can be built normally locally, but it cannot be built successfully on jitpack jitpack build log:https://jitpack.io/com/github/YufiriaMazenta/CrypticLib/3daacc7198/build.log This is my…
0
votes
0 answers

Jitpack seems to be building the app.gradle instead of the myLibrary.gradle

I have a library that I am trying to deploy to jitpack, but i keep getting I am trying to deploy a library on jitpack, but I keep getting build errors like these within the logs Gradle 'publishToMavenLocal' task not found. Please add the…
0
votes
0 answers

Publish flutter module aar via jitpack

right now im working on making flutter plugin/module for my client to integrate the function for cross-platform mobile development, Ive finished my library plugin (as flutter module) and then I've made a new native android project and import the…
0
votes
0 answers

How to modify dependency groupId in jitpack.io after publishing 1st version of Android library? [Not solved]

I'll explain my problem step by step and also will add more details in case anyone is confused about problem statement. Scenario: I wanted to create one simple Hello World kind of Android library just to understand how things works! After doing R&D…