Skip to content

Commit

Permalink
Merge pull request #3 from mateusz-bak/dev
Browse files Browse the repository at this point in the history
v0.1.1
  • Loading branch information
mateusz-bak authored Apr 26, 2021
2 parents 72d7f26 + dc42d27 commit 54843f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "0.1.0"
versionName "0.1.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,12 @@ class ListElementAdapter(
holder.itemView.ivDeleteBook.setOnClickListener{
viewModel.delete(curBook)

Snackbar.make(it, "Subscription Deleted", Snackbar.LENGTH_LONG)
Snackbar.make(it, "Book Deleted", Snackbar.LENGTH_LONG)
.setAction("Undo", UndoBookDeletion())
.show()
}

holder.itemView.ivEditBook.setOnClickListener {
// AppLog
Log.d("AppLog", "setOnClickListener executed")
EditListElementDialog(context, curBook,
object: EditDialogListener {
override fun onSaveButtonClicked(item: ListElement) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<string name="next">Next</string>
<string name="previous">Previous</string>

<string name="app_version">v0.1.0</string>
<string name="app_version">v0.1.1</string>

</resources>

0 comments on commit 54843f8

Please # to comment.