Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Check if module is installed on external SD card #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
5 changes: 5 additions & 0 deletions src/de/robv/android/xposed/XposedBridge.java
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,11 @@ private static void loadModules(String startClassName) throws IOException {
private static void loadModule(String apk, String startClassName) {
log("Loading modules from " + apk);

if (apk.startsWith("/mnt/asec")) {
log(" This module is installed on external SD card and it will NOT work");
return;
}

if (!new File(apk).exists()) {
log(" File does not exist");
return;
Expand Down