Skip to content

Commit

Permalink
Fix ktlint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharkaboi committed Mar 24, 2024
1 parent a766d05 commit 74dde24
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ class MainActivity : AppCompatActivity() {
}
}

binding.tvUpdateDetails.text =
"Error occurred when checking for updates:\n\n$throwable"
binding.tvUpdateDetails.text = "Error occurred when checking for updates:\n\n$throwable"
}

override fun onCreate(savedInstanceState: Bundle?) {
Expand All @@ -72,11 +71,11 @@ class MainActivity : AppCompatActivity() {
val updateChecker =
AppUpdateChecker(
source =
GithubTagSource(
ownerUsername = "Sharkaboi",
repoName = "AppUpdateChecker",
currentVersion = "v0.0.0",
),
GithubTagSource(
ownerUsername = "Sharkaboi",
repoName = "AppUpdateChecker",
currentVersion = "v0.0.0",
),
)

binding.tvUpdateDetails.text = "Checking for updates"
Expand Down

0 comments on commit 74dde24

Please sign in to comment.