Skip to content

Commit

Permalink
[app] headless support android S sdk 34
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornaco committed Jun 8, 2023
1 parent df51ef1 commit 584d8b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ interface SdkVersions {
int _32 = 32;
// Android T
int _33 = 33;
int _34 = 34;

int[] ALL = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33};
int[] ALL = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34};
}
}
2 changes: 1 addition & 1 deletion android/internal/Thanox-Internal
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._31;
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._32;
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._33;
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._34;

@XposedHook(targetSdkVersion = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33})
@XposedHook(targetSdkVersion = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34})
public class ActivityIntentResolverRegistry implements IXposedHook {

// https://github.com/LineageOS/android_frameworks_base/blob/lineage-15.1/services/core/java/com/android/server/am/BroadcastQueue.java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._31;
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._32;
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._33;
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._34;

@AllArgsConstructor
@XposedHook(targetSdkVersion = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33})
@XposedHook(targetSdkVersion = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34})
public class DelegateRegistry implements IXposedHook {

@Override
Expand Down

0 comments on commit 584d8b6

Please sign in to comment.