Skip to content

Commit

Permalink
build(deps): Bump android Appcompat to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieldonadel committed Feb 9, 2022
1 parent 95f950d commit 6a84ccc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ReactAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@ dependencies {
api("com.facebook.infer.annotation:infer-annotation:0.18.0")
api("com.facebook.yoga:proguard-annotations:1.19.0")
api("javax.inject:javax.inject:1")
api("androidx.appcompat:appcompat:1.0.2")
api("androidx.appcompat:appcompat:${APPCOMPAT_VERSION}")
api("androidx.appcompat:appcompat-resources:${APPCOMPAT_VERSION}")
api("androidx.autofill:autofill:1.1.0")
api("androidx.swiperefreshlayout:swiperefreshlayout:1.0.0")
api("com.facebook.fresco:fresco:${FRESCO_VERSION}")
Expand Down
1 change: 1 addition & 0 deletions ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ROBOLECTRIC_VERSION=4.4
JUNIT_VERSION=4.12

ANDROIDX_TEST_VERSION=1.1.0
APPCOMPAT_VERSION=1.4.1
FRESCO_VERSION=2.5.0
OKHTTP_VERSION=4.9.2
SO_LOADER_VERSION=0.10.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ public View getContentView() {
}

public boolean isShowing() {
return mDialog.isShowing();
return mDialog != null && mDialog.isShowing();
}

public void show() {
Expand Down

0 comments on commit 6a84ccc

Please sign in to comment.