Skip to content

Commit a9dac3c

Browse files
committed
Version 1.2.0
Gradle Nexus Publish plugin 2.0.0. Migrate to token-based publishing. Disable proguard for sample.
1 parent a759cea commit a9dac3c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Android 4.3 (API 18) and above.
1111

1212
> Since v1.0.0, it is dependent on Java 8.
1313
<br/>Since v1.1.0, it is targeting Java 17 to provide maximum compatibility.
14+
<br/>Since v1.2.0, the minimum SDK is Android 4.4 (API 19) to comply with the latest policies.
1415
1516
<img src="./graphics/preview.gif" width="280" height="486">
1617

@@ -36,7 +37,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
3637

3738
```groovy
3839
dependencies {
39-
implementation 'com.pranavpandey.android:dynamic-motion:1.1.0'
40+
implementation 'com.pranavpandey.android:dynamic-motion:1.2.0'
4041
}
4142
```
4243

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ buildscript {
3838
}
3939

4040
plugins {
41-
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
41+
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
4242
}
4343

4444
allprojects {
@@ -69,9 +69,9 @@ ext {
6969
mavenDir = 'com/pranavpandey/android'
7070
mavenArtifactId = 'dynamic-motion'
7171
mavenInceptionYear = 2018
72-
mavenVersion = '1.1.0'
73-
mavenVersionCode = 9
74-
sampleVersionCode = 9
72+
mavenVersion = '1.2.0'
73+
mavenVersionCode = 10
74+
sampleVersionCode = 10
7575

7676
developerId = 'pranavpandey'
7777
developerName = 'Pranav Pandey'

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ android {
3434

3535
buildTypes {
3636
release {
37-
shrinkResources true
38-
minifyEnabled true
37+
shrinkResources false
38+
minifyEnabled false
3939
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
4040
}
4141
}

0 commit comments

Comments
 (0)