Skip to content

Commit

Permalink
Fix missing CorePatchForV entry
Browse files Browse the repository at this point in the history
  • Loading branch information
aviraxp authored Nov 23, 2024
1 parent 798b1af commit 3599a10
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/java/toolkit/coderstory/MainHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ public void initZygote(StartupParam startupParam) {
if (BuildConfig.DEBUG)
XposedBridge.log("D/" + TAG + " initZygote: Current sdk version " + Build.VERSION.SDK_INT);
switch (Build.VERSION.SDK_INT) {
case Build.VERSION_CODES.VANILLA_ICE_CREAM: // 35
new CorePatchForV().initZygote(startupParam);
break;
case Build.VERSION_CODES.UPSIDE_DOWN_CAKE: // 34
new CorePatchForU().initZygote(startupParam);
break;
Expand Down

0 comments on commit 3599a10

Please sign in to comment.