Skip to content

Commit

Permalink
Bugs Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
thesarangal committed Jun 6, 2021
1 parent d112d72 commit b7f3a60
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ChangeLog

### Version 1.0.5
### Version 1.0.6
#### Date: June 06, 2021

- Bugs Fixed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package `in`.sarangal.broadrecycleradaptersample.activity

import `in`.sarangal.broadrecycleradapter.adapter.BroadRecyclerAdapter
import `in`.sarangal.broadrecycleradapter.BroadRecyclerAdapter
import `in`.sarangal.broadrecycleradapter.decorator.CustomSpaceDecorator
import `in`.sarangal.broadrecycleradapter.itemviewmodel.BaseItemViewModel
import `in`.sarangal.broadrecycleradapter.listener.ItemLongClickListener
Expand Down Expand Up @@ -164,6 +164,65 @@ class MainActivity : AppCompatActivity() {
viewModel.adapter = BroadRecyclerAdapter(
itemClickListener = object : ItemLongClickListener {

/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */

/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */

/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */

/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Item Long Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Item Long Click Listener
*
Expand All @@ -189,6 +248,65 @@ class MainActivity : AppCompatActivity() {
}
}

/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */

/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */

/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */

/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Click Listener
*
* @param view View on which user is clicked
* @param value Object of the List: You need to cast this object to the type of
* list which has been used in the adapter.
*
* */
/**
* Callback of RecyclerView Click Listener
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package `in`.sarangal.broadrecycleradaptersample.activity

import `in`.sarangal.broadrecycleradapter.adapter.BroadRecyclerAdapter
import `in`.sarangal.broadrecycleradapter.BroadRecyclerAdapter
import `in`.sarangal.broadrecycleradapter.itemviewmodel.BaseItemViewModel
import `in`.sarangal.broadrecycleradaptersample.itemviewmodel.ContactItemViewModel
import `in`.sarangal.broadrecycleradaptersample.itemviewmodel.TitleItemViewModel
Expand Down
4 changes: 2 additions & 2 deletions broadrecycleradapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 30
versionCode 5
versionName "1.0.5"
versionCode 6
versionName "1.0.6"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package `in`.sarangal.broadrecycleradapter.adapter
package `in`.sarangal.broadrecycleradapter

import `in`.sarangal.broadrecycleradapter.BR
import `in`.sarangal.broadrecycleradapter.listener.BaseItemClickListener
import `in`.sarangal.broadrecycleradapter.itemviewmodel.BaseItemViewModel
import `in`.sarangal.broadrecycleradapter.utils.notifyObserver
Expand Down

0 comments on commit b7f3a60

Please sign in to comment.