Partial-revert: Add filter to list & update apps installed by Aurora Store only
Don't filter out packages without launch intent. Some packages provides updates while not providing a launch intent for users. Test: Check if "com.google.android.euicc" is visible in blacklist and has updates. Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
@@ -152,9 +152,7 @@ object PackageUtil {
|
|||||||
)
|
)
|
||||||
|
|
||||||
packageInfoList = packageInfoList.filter {
|
packageInfoList = packageInfoList.filter {
|
||||||
it.packageName != null
|
it.packageName != null && it.applicationInfo != null
|
||||||
&& it.applicationInfo != null
|
|
||||||
&& packageManager.getLaunchIntentForPackage(it.packageName) != null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Filter google apps*/
|
/*Filter google apps*/
|
||||||
|
|||||||
Reference in New Issue
Block a user