Skip to content

Commit

Permalink
0.0.41.beta13
Browse files Browse the repository at this point in the history
  • Loading branch information
kongzue committed Aug 2, 2021
1 parent a6d5d53 commit b85087f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,11 @@ public static void dismiss() {
me().doDismiss();
}

public static void dismiss(Activity activity) {
WaitDialog instance = getInstance(activity);
if (instance != null) instance.doDismiss();
}

protected static WaitDialog me() {
for (BaseDialog baseDialog : getRunningDialogList()) {
if (baseDialog instanceof WaitDialog) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true

BUILD_VERSION=0.0.41.beta11
BUILD_VERSION=0.0.41.beta13
BUILD_VERSION_INT=40

0 comments on commit b85087f

Please sign in to comment.