Skip to content

Commit 3ae2a96

Browse files
committed
Version 1.0.2
Enable proguard for sample to fix verification error in MDC-Andorid.
1 parent 7e7365e commit 3ae2a96

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
3535

3636
```groovy
3737
dependencies {
38-
implementation 'com.pranavpandey.android:dynamic-motion:1.0.1'
38+
implementation 'com.pranavpandey.android:dynamic-motion:1.0.2'
3939
}
4040
```
4141

@@ -115,7 +115,7 @@ Pranav Pandey
115115

116116
## License
117117

118-
Copyright 2018-2022 Pranav Pandey
118+
Copyright 2018-2023 Pranav Pandey
119119

120120
Licensed under the Apache License, Version 2.0 (the "License");
121121
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018-2022 Pranav Pandey
2+
* Copyright 2018-2023 Pranav Pandey
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@ buildscript {
2121
'targetSdk' : 33,
2222
'buildTools' : '33.0.2',
2323
'constraintlayout': '2.1.4',
24-
'dialogs' : '4.3.1',
24+
'dialogs' : '4.3.2',
2525
'kotlin' : '1.8.0',
2626
'viewpager2' : '1.0.0'
2727
]
@@ -69,9 +69,9 @@ ext {
6969
mavenDir = 'com/pranavpandey/android'
7070
mavenArtifactId = 'dynamic-motion'
7171
mavenInceptionYear = 2018
72-
mavenVersion = '1.0.1'
73-
mavenVersionCode = 7
74-
sampleVersionCode = 7
72+
mavenVersion = '1.0.2'
73+
mavenVersionCode = 8
74+
sampleVersionCode = 8
7575

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

sample/build.gradle

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

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

0 commit comments

Comments
 (0)