diff --git a/README.md b/README.md index e46ac81..f5c3476 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ project to AndroidX.
Since v4.3.0, it supports some helper methods to capture results via [Barquode](#barquode-for-android) app.
Since v4.5.1, it is targeting Java 17 to provide maximum compatibility. +
Since v4.6.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies. --- @@ -55,7 +56,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-utils:4.5.1' + implementation 'com.pranavpandey.android:dynamic-utils:4.6.0' // For legacy projects. implementation 'com.pranavpandey.android:dynamic-utils:1.3.0' diff --git a/build.gradle b/build.gradle index 06e2350..b9ab932 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,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 { @@ -67,8 +67,8 @@ ext { mavenDir = 'com/pranavpandey/android' mavenArtifactId = 'dynamic-utils' mavenInceptionYear = '2017' - mavenVersion = '4.5.1' - mavenVersionCode = 45 + mavenVersion = '4.6.0' + mavenVersionCode = 46 developerId = 'pranavpandey' developerName = 'Pranav Pandey'