Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
Enable proguard for sample to fix verification error in
MDC-Andorid.
  • Loading branch information
pranavpandey committed Mar 12, 2023
1 parent 7e7365e commit 3ae2a96
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi

```groovy
dependencies {
implementation 'com.pranavpandey.android:dynamic-motion:1.0.1'
implementation 'com.pranavpandey.android:dynamic-motion:1.0.2'
}
```

Expand Down Expand Up @@ -115,7 +115,7 @@ Pranav Pandey

## License

Copyright 2018-2022 Pranav Pandey
Copyright 2018-2023 Pranav Pandey

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2022 Pranav Pandey
* Copyright 2018-2023 Pranav Pandey
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -21,7 +21,7 @@ buildscript {
'targetSdk' : 33,
'buildTools' : '33.0.2',
'constraintlayout': '2.1.4',
'dialogs' : '4.3.1',
'dialogs' : '4.3.2',
'kotlin' : '1.8.0',
'viewpager2' : '1.0.0'
]
Expand Down Expand Up @@ -69,9 +69,9 @@ ext {
mavenDir = 'com/pranavpandey/android'
mavenArtifactId = 'dynamic-motion'
mavenInceptionYear = 2018
mavenVersion = '1.0.1'
mavenVersionCode = 7
sampleVersionCode = 7
mavenVersion = '1.0.2'
mavenVersionCode = 8
sampleVersionCode = 8

developerId = 'pranavpandey'
developerName = 'Pranav Pandey'
Expand Down
3 changes: 2 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ android {

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

0 comments on commit 3ae2a96

Please sign in to comment.