Skip to content

Commit

Permalink
Version 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavpandey committed Feb 25, 2021
1 parent 1f43cf2 commit cba44c1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
```groovy
dependencies {
// For AndroidX enabled projects.
implementation 'com.pranavpandey.android:dynamic-support:4.0.0'
implementation 'com.pranavpandey.android:dynamic-support:4.1.0'
// For legacy projects.
implementation 'com.pranavpandey.android:dynamic-support:1.3.0'
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ buildscript {
'material' : '1.4.0-alpha01',
'preferences' : '1.2.1',
'swiperefresh': '1.1.0',
'theme' : '2.0.0',
'theme' : '2.0.1',
'work' : '2.5.0'
]

Expand Down Expand Up @@ -73,9 +73,9 @@ ext {
mavenDir = 'com/pranavpandey/android'
mavenArtifactId = 'dynamic-support'
mavenInceptionYear = 2018
mavenVersion = '4.0.0'
mavenVersionCode = 25
sampleVersionCode = 25
mavenVersion = '4.1.0'
mavenVersionCode = 26
sampleVersionCode = 26

developerId = 'pranavpandey'
developerName = 'Pranav Pandey'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ public static void setCornerMin(@Nullable View view, float cornerMax) {
/**
* Set the elevation on same background option for the supplied view.
*
* @param view The view to be used.
* @param elevationOnSameBackground {@code true} to enable elevation on the same background.
*/
public static void setElevationOnSameBackground(@Nullable View view,
Expand Down Expand Up @@ -1137,6 +1138,8 @@ public static void onPageScrollStateChanged(@Nullable ViewPager.OnPageChangeList
* @param defaultColor The default color for the background.
* @param <T> The type of the tutorial.
* @param <V> The type of the tutorial fragment.
*
* @return The background color for the supplied tutorial.
*/
public static @ColorInt <T, V> int getBackgroundColor(@Nullable DynamicTutorial<T, V> tutorial,
@ColorInt int defaultColor) {
Expand Down

0 comments on commit cba44c1

Please sign in to comment.