diff --git a/README.md b/README.md index ee8ca00..0f8d621 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ project to AndroidX.
Since v4.1.0, it is dependent on Java 8 due to the dependency on [Dynamic Utils](https://github.com/pranavpandey/dynamic-utils).
Since v4.4.1, it is targeting Java 17 to provide maximum compatibility. +
Since v4.5.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies. --- @@ -41,7 +42,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-dialogs:4.4.1' + implementation 'com.pranavpandey.android:dynamic-dialogs:4.5.0' // For legacy projects. implementation 'com.pranavpandey.android:dynamic-dialogs:1.3.0' diff --git a/build.gradle b/build.gradle index 1cbed43..f39c850 100644 --- a/build.gradle +++ b/build.gradle @@ -40,7 +40,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 { @@ -71,9 +71,9 @@ ext { mavenGroup = 'com.pranavpandey.android' mavenDir = 'com/pranavpandey/android' mavenInceptionYear = '2017' - mavenVersion = '4.4.1' - mavenVersionCode = 36 - sampleVersionCode = 37 + mavenVersion = '4.5.0' + mavenVersionCode = 37 + sampleVersionCode = 38 developerId = 'pranavpandey' developerName = 'Pranav Pandey'