Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamKwokX committed Aug 20, 2023
1 parent aad0110 commit 367481b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ tasks.withType(KotlinCompile).configureEach{
// publish
mavenPublishing {
def artifactId = "android-util-view"
def version = "1.0.0"
def version = "1.0.1"
def isSnapshot = false

if (isSnapshot) version += "-SNAPSHOT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ class ContactsFragment : Fragment(R.layout.fragment_main) {
* Use `update()` or `update{ ... }` insteadOf `notify...` after data changes.
*
* The lambda is called after the recyclerview submits the update to screen.
* Since data may change too frequently, the previous passed lambda may be omitted.
* Since data may change too frequently, the previous passed lambda may be omitted,
* which is an optimization.
*/
contactsAdapter.update()
}
Expand Down

0 comments on commit 367481b

Please sign in to comment.