Skip to content

Commit

Permalink
Update dependencies for app drawer scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Oct 25, 2024
1 parent 3edbc81 commit 07e3afb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*
* ====================================================================
* Copyright (c) 2012-2023 AbandonedCart. All rights reserved.
* Copyright (c) 2012-2024 AbandonedCart. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* For the purpose of this license, the phrase "GitHub labels" shall be
* used to refer to the items "8-bit Dream", "TwistedUmbrella", "TagMo",
* "SamSprung", and "AbandonedCart" and these items should be considered
* the equivalent of any usage of the aforementioned phrase.
* used to refer to "AbandonedCart", "TwistedUmbrella", "SamSprung",
* and "TagMo" such that these entities are collectively considered the
* equivalent of any usage of the aforementioned phrase.
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
Expand Down Expand Up @@ -51,4 +51,4 @@
* copied and put under another distribution license
* [including the GNU Public License.] Content not subject to these terms is
* subject to to the terms and conditions of the Apache License, Version 2.0.
*/
*/
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ dependencies {

implementation 'com.android.billingclient:billing:7.1.0'

implementation 'com.github.8bitdream:AndroidFastScroll:4cb96477d5'
implementation 'com.github.8bitdream:AndroidFastScroll:3453c46352'

implementation 'com.google.android.material:material:1.12.0'
implementation 'com.google.android.play:app-update-ktx:2.1.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class FilteredAppsAdapter(
return SimpleViewHolder(parent, pacMan, prefs, hide)
}

override fun getPopupText(position: Int) : CharSequence {
override fun getPopupText(view: View, position: Int) : CharSequence {
if (position >= packages.size) return "?"
val item = packages[position]
val label: CharSequence? = try {
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ kotlin.code.style=official
kapt.incremental.apt=true
# Caches results of configuration phase for subsequent builds
org.gradle.unsafe.configuration-cache=true
org.gradle.configuration-cache=true
# Gradle wil run parallel compilation tasks within subprojects
kotlin.parallel.tasks.in.project=true
android.defaults.buildfeatures.buildconfig=true
Expand Down

0 comments on commit 07e3afb

Please sign in to comment.