We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 092dc7e commit 0e50f3cCopy full SHA for 0e50f3c
1 file changed
xposed/src/main/java/icu/nullptr/hidemyapplist/xposed/HMAService.kt
@@ -124,6 +124,8 @@ class HMAService(val pms: IPackageManager) : IHMAService.Stub() {
124
frameworkHooks.add(PmsHookTarget33(this))
125
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
126
frameworkHooks.add(PmsHookTarget30(this))
127
+ } else if (Build.VERSION.SDK_INT == Build.VERSION_CODES.Q) {
128
+ frameworkHooks.add(PmsHookTarget29(this))
129
} else {
130
frameworkHooks.add(PmsHookTarget28(this))
131
}
0 commit comments