Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Introduced protections against system command injection #480

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
import de.robv.android.xposed.XposedHelpers;

public class NotificationVolumeSeparateSlider {
private NotificationVolumeSeparateSlider() {
}

public static void initHideDeviceControlEntry(ClassLoader pluginLoader) {
int notifVolumeOnResId;
int notifVolumeOffResId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

public class XposedLogUtils {

private XposedLogUtils() {
}

private static boolean isDebugVersion = BuildConfig.BUILD_TYPE.contains("debug");
private static boolean isReleaseVersion = BuildConfig.BUILD_TYPE.contains("release");
private static boolean isDisableDetailLog = BaseHook.mPrefsMap.getBoolean("settings_disable_detailed_log");
Expand Down