Add filter to list & update apps installed by Aurora Store only

- Improves fdroid filter
- Remove all apps that have no launch intent:
This commit is contained in:
Rahul Patel
2023-10-18 05:29:24 +05:30
parent 79516bbc20
commit c7c2781281
11 changed files with 79 additions and 36 deletions

View File

@@ -61,6 +61,10 @@ fun isTAndAbove(): Boolean {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU
}
fun isUAndAbove(): Boolean {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE
}
fun isMIUI(): Boolean {
return getSystemProperty("ro.miui.ui.version.name").isNotEmpty()
}