diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-04-06 22:56:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 02:26:52 +0530 |
commit | e3a49e2632cfda9c548728ae306ceb06374855ea (patch) | |
tree | 2f822eb194f6b4e0e74ab68f5009571d35c2a8e0 /app/build.gradle | |
parent | 034babcbf40517e6abfce5aa7ae5ca647033f971 (diff) |
Modernize file listing and search in AutofillFilterActivity (#683)
* WIP: Modernize file listing and search
* Refactor
* Implement fuzzy search
* Improve ViewModel API and introduce Adapter
* Integrate new search into AutofillFilterActivity and dedebounce
* Improve no results layout
* Reformat
* Highlight origin in FileBased directory structure
* Extract highlighting logic into DirectoryStructure
* Trim whitespace before searching
* Remove debug logging
* Remove more debug logging
* Organize imports
* Remove imports
* Update app/src/main/java/com/zeapo/pwdstore/SearchableRepositoryViewModel.kt
Co-Authored-By: Harsh Shandilya <me@msfjarvis.dev>
* Address review comments
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 0112c661..4d410c46 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -78,11 +78,14 @@ android { dependencies { implementation deps.androidx.annotation + implementation deps.androidx.activity_ktx implementation deps.androidx.appcompat implementation deps.androidx.biometric implementation deps.androidx.constraint_layout implementation deps.androidx.core_ktx implementation deps.androidx.documentfile + implementation deps.androidx.fragment_ktx + implementation deps.androidx.lifecycle_livedata_ktx implementation deps.androidx.lifecycle_runtime_ktx implementation deps.androidx.local_broadcast_manager implementation deps.androidx.material @@ -102,7 +105,6 @@ dependencies { implementation deps.third_party.jsch implementation deps.third_party.openpgp_ktx implementation deps.third_party.publicsuffixlist - implementation deps.third_party.recyclical implementation deps.third_party.ssh_auth implementation deps.third_party.timber implementation deps.third_party.timberkt |