diff --git a/README.md b/README.md
index ff54ca3..219de24 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,7 @@ Android 4.3 (API 18) and above.
> Since v1.0.0, it is dependent on Java 8.
Since v1.1.0, it is targeting Java 17 to provide maximum compatibility.
+
Since v1.2.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies.
@@ -36,7 +37,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
```groovy
dependencies {
- implementation 'com.pranavpandey.android:dynamic-motion:1.1.0'
+ implementation 'com.pranavpandey.android:dynamic-motion:1.2.0'
}
```
diff --git a/build.gradle b/build.gradle
index 82434da..5e7068d 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,9 +69,9 @@ ext {
mavenDir = 'com/pranavpandey/android'
mavenArtifactId = 'dynamic-motion'
mavenInceptionYear = 2018
- mavenVersion = '1.1.0'
- mavenVersionCode = 9
- sampleVersionCode = 9
+ mavenVersion = '1.2.0'
+ mavenVersionCode = 10
+ sampleVersionCode = 10
developerId = 'pranavpandey'
developerName = 'Pranav Pandey'
diff --git a/sample/build.gradle b/sample/build.gradle
index 2aac169..772b2dd 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -34,8 +34,8 @@ android {
buildTypes {
release {
- shrinkResources true
- minifyEnabled true
+ shrinkResources false
+ minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}