Skip to content

Commit

Permalink
[service] bring up android T (33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornaco committed Jun 10, 2022
1 parent 998d268 commit a76236b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ interface SdkVersions {
int _30 = 30;
int _31 = 31;
int _32 = 32;
// Android T
int _33 = 33;

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

@XposedHook(targetSdkVersion = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32})
@XposedHook(targetSdkVersion = {_21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33})
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 @@ -17,9 +17,10 @@
import static github.tornaco.xposed.annotation.XposedHook.SdkVersions._30;
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;

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

@Override
Expand Down

0 comments on commit a76236b

Please sign in to comment.