File tree Expand file tree Collapse file tree 4 files changed +8
-22
lines changed Expand file tree Collapse file tree 4 files changed +8
-22
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
47
47
``` groovy
48
48
dependencies {
49
49
// For AndroidX enabled projects.
50
- implementation 'com.pranavpandey.android:dynamic-support:6.2.0 '
50
+ implementation 'com.pranavpandey.android:dynamic-support:6.2.1 '
51
51
52
52
// For legacy projects.
53
53
implementation 'com.pranavpandey.android:dynamic-support:1.3.0'
@@ -209,7 +209,7 @@ Pranav Pandey
209
209
210
210
## License
211
211
212
- Copyright 2018-2022 Pranav Pandey
212
+ Copyright 2018-2023 Pranav Pandey
213
213
214
214
Licensed under the Apache License, Version 2.0 (the "License");
215
215
you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2018-2022 Pranav Pandey
2
+ * Copyright 2018-2023 Pranav Pandey
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
77
77
mavenDir = ' com/pranavpandey/android'
78
78
mavenArtifactId = ' dynamic-support'
79
79
mavenInceptionYear = 2018
80
- mavenVersion = ' 6.2.0 '
81
- mavenVersionCode = 34
82
- sampleVersionCode = 35
80
+ mavenVersion = ' 6.2.1 '
81
+ mavenVersionCode = 35
82
+ sampleVersionCode = 36
83
83
84
84
developerId = ' pranavpandey'
85
85
developerName = ' Pranav Pandey'
Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ android {
35
35
36
36
buildTypes {
37
37
release {
38
- minifyEnabled false
38
+ shrinkResources true
39
+ minifyEnabled true
39
40
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
40
41
}
41
42
}
Original file line number Diff line number Diff line change 19
19
# If you keep the line number information, uncomment this to
20
20
# hide the original source file name.
21
21
#-renamesourcefileattribute SourceFile
22
-
23
- # Ignore support warnings.
24
- -dontwarn android.support.**
25
-
26
- # Keep methods in Activity that could be used in the XML.
27
- -keepclassmembers class * extends android.app.Activity {
28
- public void *(android.view.View);
29
- }
30
- -keep public class * extends android.app.Application
31
-
32
- # Keep support library classes.
33
- -keep class android.support.v4.view.** { *; }
34
- -keep class android.support.v7.widget.** { *; }
35
- -keep class android.support.design.widget.** { *; }
36
- -keep class android.support.design.internal.** { *; }
You can’t perform that action at this time.
0 commit comments