[app] Don't filter recommended apps (#650)

* [app] Don't filter recommended apps

* Update AGP

* Update ScopeAdapter.java

Co-authored-by: Wang Han <wanghan1995315@gmail.com>
This commit is contained in:
tehcneko 2021-05-22 18:55:33 +08:00 committed by GitHub
parent 636c1ae603
commit fb05d85a9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -522,9 +522,7 @@ public class ScopeAdapter extends RecyclerView.Adapter<ScopeAdapter.ViewHolder>
if (emptyCheckedList) { if (emptyCheckedList) {
checkedList.add(application); checkedList.add(application);
} }
} } else if (shouldHideApp(info, application)) {
if (shouldHideApp(info, application)) {
continue; continue;
} }

View File

@ -25,7 +25,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath("com.android.tools.build:gradle:7.0.0-beta01") classpath("com.android.tools.build:gradle:7.0.0-beta02")
classpath("org.eclipse.jgit:org.eclipse.jgit:5.10.0.202012080955-r") classpath("org.eclipse.jgit:org.eclipse.jgit:5.10.0.202012080955-r")
classpath(kotlin("gradle-plugin", version = "1.4.32")) classpath(kotlin("gradle-plugin", version = "1.4.32"))
} }