From f413f03ce8d2a138557a0e1cbde6b05e5610783c Mon Sep 17 00:00:00 2001 From: Pranav Pandey Date: Thu, 25 Jul 2024 06:14:05 +0530 Subject: [PATCH] Version 6.4.0 Gradle Nexus Publish plugin 2.0.0. Migrate to token-based publishing. --- README.md | 3 ++- build.gradle | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ca47befe3..8d82d86d2 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ to AndroidX.
Since v3.0.0, it is dependent on Java 8 due to the dependency on [DrawerLayout][drawer-layout].
Since v6.3.0, it is targeting Java 17 to provide maximum compatibility. +
Since v6.4.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies.

@@ -48,7 +49,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi ```groovy dependencies { // For AndroidX enabled projects. - implementation 'com.pranavpandey.android:dynamic-support:6.2.1' + implementation 'com.pranavpandey.android:dynamic-support:6.4.0' // For legacy projects. implementation 'com.pranavpandey.android:dynamic-support:1.3.0' diff --git a/build.gradle b/build.gradle index f232c95c9..78e4144f9 100644 --- a/build.gradle +++ b/build.gradle @@ -46,7 +46,7 @@ buildscript { } plugins { - id("io.github.gradle-nexus.publish-plugin") version "1.1.0" + id("io.github.gradle-nexus.publish-plugin") version "2.0.0" } allprojects { @@ -77,9 +77,9 @@ ext { mavenDir = 'com/pranavpandey/android' mavenArtifactId = 'dynamic-support' mavenInceptionYear = 2018 - mavenVersion = '6.3.0' - mavenVersionCode = 36 - sampleVersionCode = 37 + mavenVersion = '6.4.0' + mavenVersionCode = 37 + sampleVersionCode = 38 developerId = 'pranavpandey' developerName = 'Pranav Pandey'