Releases: amirisback/jitpack-library-groovy-guide
Releases · amirisback/jitpack-library-groovy-guide
Release v1.1.3
* 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
* 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
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
* 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
* 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
* 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
* Update Build Gradle to 7.0.0 *
* Enhance Performance *
* Experimental 2 Library *
* Experimental Java/Kotlin Library *
Release v1.0.4
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"
}
}
}
}