Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Open
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
4 changes: 3 additions & 1 deletion app/src/main/java/de/robv/android/xposed/XposedInit.java
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,9 @@ private static void loadModule(String apk, ClassLoader topClassLoader) {
return;
}

if (dexFile.loadClass(XposedBridge.class.getName(), topClassLoader) != null) {
boolean ignoreModuleXposedClassesError = SELinuxHelper.getAppDataFileService().checkFileExists(BASE_DIR + "conf/ignore_module_xposed_classes_error");

if (!ignoreModuleXposedClassesError && dexFile.loadClass(XposedBridge.class.getName(), topClassLoader) != null) {
Log.e(TAG, " Cannot load module:");
Log.e(TAG, " The Xposed API classes are compiled into the module's APK.");
Log.e(TAG, " This may cause strange issues and must be fixed by the module developer.");
Expand Down