Skip to content

Commit

Permalink
debug feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev4Mod committed Jun 25, 2024
1 parent 70795cd commit 8d47e3d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
import com.wmods.wppenhacer.xposed.features.others.Channels;
import com.wmods.wppenhacer.xposed.features.others.ChatFilters;
import com.wmods.wppenhacer.xposed.features.others.CopyStatus;
import com.wmods.wppenhacer.xposed.features.others.DebugFeature;
import com.wmods.wppenhacer.xposed.features.others.GroupAdmin;
import com.wmods.wppenhacer.xposed.features.others.Stickers;
import com.wmods.wppenhacer.xposed.features.privacy.CallPrivacy;
Expand Down Expand Up @@ -206,6 +207,7 @@ private static void sendEnabledBroadcast(Context context) {
private static void plugins(@NonNull ClassLoader loader, @NonNull XSharedPreferences pref, @NonNull String versionWpp) {

var classes = new Class<?>[]{
DebugFeature.class,
ShowEditMessage.class,
AntiRevoke.class,
CustomToolbar.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package com.wmods.wppenhacer.xposed.features.others;

import androidx.annotation.NonNull;

import com.wmods.wppenhacer.xposed.core.Feature;

import de.robv.android.xposed.XSharedPreferences;

public class DebugFeature extends Feature {
public DebugFeature(@NonNull ClassLoader classLoader, @NonNull XSharedPreferences preferences) {
super(classLoader, preferences);
}

@Override
public void doHook() throws Throwable {


}

@NonNull
@Override
public String getPluginName() {
return "Debug Feature";
}
}

0 comments on commit 8d47e3d

Please sign in to comment.