Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
Gradle Nexus Publish plugin 2.0.0.
Migrate to token-based publishing.
Disable proguard for sample.
  • Loading branch information
pranavpandey committed Jul 25, 2024
1 parent a759cea commit a9dac3c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Android 4.3 (API 18) and above.

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

Expand All @@ -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'
}
```

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ android {

buildTypes {
release {
shrinkResources true
minifyEnabled true
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down

0 comments on commit a9dac3c

Please sign in to comment.