Skip to content

Releases: amirisback/jitpack-library-groovy-guide

Release v1.1.3

07 Oct 01:21
Compare
Choose a tag to compare
* Update Build Gradle to 7.0.2 *
* Enhance Performance *
* Android Library First *
* Android Library Second *
* Kotlin Library *
* Experimental 3 Library *
* Experimental Java/Kotlin Library *
* Renaming JitPack Library Guide Into JitPack Library Groovy Guide *

Release v1.1.2

19 Sep 08:38
Compare
Choose a tag to compare
* Update Build Gradle to 7.0.2 *
* Enhance Performance *
* Android Library First *
* Android Library Second *
* Kotlin Library *
* Experimental 3 Library *
* Experimental Java/Kotlin Library *
* Renaming JitPack Library Guide Into JitPack Library Groovy Guide *

Release v1.1.1

12 Sep 11:12
Compare
Choose a tag to compare

jitpack-library-guide

For openJDK 11 and AGP 7.0.0 +

  • Please read every single note for detail
  • Tutorial Click Here

Repository for testing build from jitpack.io

  • Red : Failed
  • Green : Success / Pass

Version Release

This Is Latest Release

$version_release = 1.1.1
$version_dcendents = 2.1

What's New??

* Update Build Gradle to 7.0.2 *
* Enhance Performance *
* Android Library First *
* Android Library Second *
* Kotlin Library *
* Experimental 3 Library *
* Experimental Java/Kotlin Library *
* Renaming JitPack Library Test Into JitPack Library Guide *

Release v1.1.0

12 Sep 09:19
Compare
Choose a tag to compare
* Update Build Gradle to 7.0.2 *
* Enhance Performance *
* Android Library First *
* Android Library Second *
* Kotlin Library *
* Experimental 3 Library *
* Experimental Java/Kotlin Library *

Release v1.0.9

12 Sep 09:07
Compare
Choose a tag to compare
* Update Build Gradle to 7.0.2 *
* Enhance Performance *
* Android Library First *
* Android Library Second *
* Kotlin Library *
* Experimental 3 Library *
* Experimental Java/Kotlin Library *

Release v1.0.7

12 Sep 07:52
Compare
Choose a tag to compare
* Update Build Gradle to 7.0.2 *
* Enhance Performance *
* Android Library First *
* Android Library Second *
* Kotlin Library *
* Experimental 3 Library *
* Experimental Java/Kotlin Library *

Release v1.0.5

12 Sep 07:14
Compare
Choose a tag to compare
* Update Build Gradle to 7.0.0 *
* Enhance Performance *
* Experimental 2 Library *
* Experimental Java/Kotlin Library *

Release v1.0.4

18 Aug 03:00
Compare
Choose a tag to compare

Fixing : Jetpack Compose Version

How To Publish Android Lib Using openJDK 11 and AGP 7.0.0 +

Step 1. Add jitpack.yml on root project

jdk:
  - openjdk11

Step 2. Add maven-publish on plugins

plugins {
    id 'com.android.library'
    ...
    id 'maven-publish'
}

Step 3. Add publish code library on build.gradle library module

afterEvaluate {
    publishing {
        publications {

            // Creates a Maven publication called "release".
            release(MavenPublication) {

                // Applies the component for the release build variant.
                from components.release

                // Library Package Name
                groupId = 'com.frogobox.test'

                // Github Repository Name
                artifactId = 'jitpack-library-test'

                // Version Library Name
                version = "$projectVersionName"

            }
        }
    }
}