diff --git a/README.md b/README.md
index b0d1695..f94b542 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,7 @@ A GDPR-compliant library to show ads via Google AdMob on Android 4.1 (API 16) an
> It uses [AndroidX][androidx] so, first [migrate][androidx-migrate] your project to AndroidX.
It is dependent on Java 8 due to the dependency on [Dynamic Utils][dynamic-utils].
Since v1.3.0, it is targeting Java 17 to provide maximum compatibility.
+
Since v1.4.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies.
---
@@ -34,7 +35,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-ads:1.3.1'
+ implementation 'com.pranavpandey.android:dynamic-ads:1.4.0'
}
```
diff --git a/build.gradle b/build.gradle
index 062c7e0..d3f2270 100644
--- a/build.gradle
+++ b/build.gradle
@@ -38,7 +38,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 {
@@ -69,8 +69,8 @@ ext {
mavenDir = 'com/pranavpandey/android'
mavenArtifactId = 'dynamic-ads'
mavenInceptionYear = '2022'
- mavenVersion = '1.3.1'
- mavenVersionCode = 7
+ mavenVersion = '1.4.0'
+ mavenVersionCode = 8
developerId = 'pranavpandey'
developerName = 'Pranav Pandey'