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 Jul 20, 2021
1 parent e22168a commit 654ebe1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Android 4.0 (API 14).
project to AndroidX.
<br/>Since v3.3.0, added [Concurrent][concurrent] package to replace the deprecated
[AsyncTask][async-task] API.
<br/>Since v4.1.0, it is dependent on Java 8 due to the dependency on
[AndroidX Core](https://developer.android.com/jetpack/androidx/releases/core).

---

Expand Down Expand Up @@ -46,7 +48,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-utils:4.0.1'
implementation 'com.pranavpandey.android:dynamic-utils:4.1.0'
// For legacy projects.
implementation 'com.pranavpandey.android:dynamic-utils:1.3.0'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ext {
mavenDir = 'com/pranavpandey/android'
mavenArtifactId = 'dynamic-utils'
mavenInceptionYear = 2017
mavenVersion = '4.0.1'
mavenVersion = '4.1.0'
mavenVersionCode = 30

developerId = 'pranavpandey'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public static boolean isActivityResolved(@Nullable Context context, @Nullable In
* Checks the availability of a file picker.
*
* @param context The context to get the package manager.
* @param downloads {@code true) to consider the download location on older API levels.
* @param downloads {@code true} to consider the download location on older API levels.
*
* @return {@code true} if a file picker is present.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class DynamicViewUtils {
/**
* Checks if the supplied view is the only root layout in the view heirarchy.
*
* @param view The view to be checked.
* @param <T> The type of the view.
*
* @return {@code true} if the supplied view is the only root layout in the view heirarchy.
Expand Down

0 comments on commit 654ebe1

Please sign in to comment.