I want to publish a library with Jitpackio. When I publish the library I get the following error; Gradle Version : 7.0.2 My Gradle JDK Version Can you help me? Answer The problem was that JitPack.io was running with JDK1.8 on its own. Add a jitpack.yml file to the project file with this content: When I did that the problem
Tag: jitpack
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: FAILURE: Build failed with an exception. What went wrong: Task ‘install’ is ambiguous in root project ‘project’. Candidates are: ‘installDebug’, ‘installDebugAndroidTest’. Try: Run gradlew tasks to get a list of available tasks. Run with –stacktrace option to get
How do I run Kotlin libraries ( distributed via JitPack ) in a Java file?
I have developed a library Text2Summary for Android which is written using Kotlin. I am distributing this library using JitPack and the building process goes perfectly fine. Now, in a Kotlin-enabled …