Skip to content

Commit

Permalink
Technical: Update Android Gradle Plugin to 8.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Jun 14, 2024
1 parent 1a4cf60 commit 5266370
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class EmojisActivity :
}

override fun onEmojiBackspaceClick() {
binding.selectedEmoji.text = ""
binding.selectedEmoji.text = null
}

override fun onEmojiClick(emoji: Emoji) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class MainDialog : DialogFragment() {
val text = editText.text.toString().trim { it <= ' ' }
if (text.isNotEmpty()) {
chatAdapter.add(text)
editText.setText("")
editText.setText(null)
}
}
val recyclerView: RecyclerView = result.findViewById(R.id.main_dialog_recycler_view)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minSdk = "21"
compileSdk = "34"
targetSdk = "34"

androidgradleplugin = "8.4.2"
androidgradleplugin = "8.5.0"
kotlin = "2.0.0"
ktlint = "1.2.1"

Expand Down

0 comments on commit 5266370

Please sign in to comment.