Skip to content

Commit

Permalink
[版本]
Browse files Browse the repository at this point in the history
  • Loading branch information
awakem committed May 17, 2023
1 parent 01f24ad commit 7b2c3e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion EaseDialogModule/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ afterEvaluate {
from components.release
groupId = 'com.night.dialog'
artifactId = 'EaseDialogModule'
version ="1.0.4"
version ="1.0.5"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.night.easedialog"
minSdk 23
targetSdk 33
versionCode 4
versionName "1.0.4"
versionCode 5
versionName "1.0.5"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/night/easedialog/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class MainActivity : AppCompatActivity() {
val mLoading = DialogTools.getDialogBuilder()
.toLoadingDialog(this, "3秒...")
Handler(Looper.getMainLooper()).postDelayed({
mLoading.dismiss()
DialogTools.dismissLoadingDialog(this)
},3000)

}
Expand Down

0 comments on commit 7b2c3e9

Please sign in to comment.