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

Fatal error occurs when building library with jitpack

I'm trying to publish a library to jitpack and I'm repeatedly encountering this error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project SimpleSQL: Fatal error compiling: invalid…
0
votes
1 answer

How to use your forked version of plugin in Gradle

I'm using gradle plugin as plugins { id 'net.ltgt.errorprone' version '2.0.2' apply false } Now, I forked net.ltgt.errorprone on Github, did some changes in branch changes. How can I tell Gradle to use the fork instead of upstream? I've found…
simPod
  • 11,498
  • 17
  • 86
  • 139
0
votes
1 answer

Jitpack.io not finding dependency

I am currently trying to use a GitHub project as a maven dependency but I always get the Could not find artifact com.github.WolfyScript:CustomCrafting:pom:master-SNAPSHOT in mavenCentral (https://repo1.maven.org/maven2/) line. My pom.xml looks as…
Trqhxrd
  • 53
  • 8
0
votes
1 answer

Having problems to build maven application

I have a project called auth-chatapp which I'm trying to run the following command line (in order to build and download all of the dependencies): mvn clean install -DskipTests=true -X -U. One of the dependencies points to a multi module maven…
0
votes
1 answer

What would happen if git repository of maven { url "https://jitpack.io" } is deleted?

So maven { url "https://jitpack.io" } is used to link github libraries to your android project. My question is what would happen if you create an app with implementations of github projects like "implementation 'com.github.authorproject:version'"…
0
votes
1 answer

cant import dependency implementation on android studio

I am beginner to android studio and I am trying to import a remote dependency for a library of DatePickerDialog (link for its github) but the import doesn't work for me. I tried to import it by the Group Id (com.github.wdullaer) and Artifact Name…
0
votes
1 answer

My library is "empty" after publish with JitPack

I trying to publish an Android library with JitPack as described at https://jitpack.io/docs/ANDROID/ and https://developer.android.com/studio/build/maven-publish-plugin#groovy. The JitPack build logs show that everything is fine, I can import it to…
Andrew
  • 33
  • 3
0
votes
2 answers

Class not resolved when implementing custom library in Gradle Android

I have created an android library and published it in Jitpack. Currently, my build is getting success in Jitpack. but when I add the implementation URL in my project build Gradle gets success but when I try to use library classes it does not get…
0
votes
1 answer

Nested modules in library not showing source

I’m working on an Android Library for all the common pieces of code we reuse in a lot of projects. In the Library I have a nested file structure so I can order the sub modules more clearly. The project can be found on Github to make it more clear…
0
votes
1 answer

Could not resolve git repository as dependency in android gradle

I am trying to add a git repository (https://github.com/FHNW-IP5-IP6/ComposeForms) as a dependency into my project with Gradle and tried the below-listed variants (1.-3.) from Is it possible to declare git repository as dependency in android gradle?…
0
votes
1 answer

PackageManager$NameNotFoundException for rxAndroidBle

For version 1.12.1, I am getting a runtime exception after upgrading to this version from 1.10.5 2021-07-16 15:30:16.588 22665-22665/co.(appname).staging E/AndroidRuntime: FATAL EXCEPTION: main Process: co.(appname).staging:svc, PID: 22665 …
0
votes
1 answer

Android/Jitpack: Unable to import submodule

I'm trying to import a submodule of an android library I'm creating. The sub-module is called progressbar https://jitpack.io/#SomeKoder/Essentials/0.1.0 https://github.com/SomeKoder/Essentials dependencies { implementation…
SomeKoder
  • 575
  • 4
  • 14
0
votes
2 answers

Could not find com.beloo.widget:ChipsLayoutManager:0.3.7

I am using repositories mavenCentral() because jcenter() is deprecated. I want to implement com.beloo.widget:ChipsLayoutManager:0.3.7. But this is uploaded on jcenter(). Any Solutions to use com.beloo.widget:ChipsLayoutManager:0.3.7 in…
0
votes
1 answer

Getting Connection reset error while downloading dependency

I am getting Connection reset error while downloading dependency. If i remove below two dependency from pom then its working fine but if i add these dependecy then its failing with below error. Dependencies:
Kalpesh
  • 80
  • 2
  • 11
0
votes
1 answer

Jitpack Task 'install' is ambiguous in root project Android Library

I require your help to be able to upload a project, to give them context, I am adding dependencies to my library: implementation 'com.google.android.gms:play-services-mlkit-text-recognition:16.1.2' implementation…
Ulai Nava
  • 167
  • 1
  • 1
  • 12