Skip to content
This repository was archived by the owner on Dec 29, 2025. It is now read-only.

Commit 4e349a8

Browse files
authored
Update LibsManager.java
1 parent fe14ff2 commit 4e349a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/id.my.alvinq.prokitid.app/libs/LibsManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private static void invokeM(DexClassLoader dcl, File file) {
6767
try {
6868
Class<?> clazz = dcl.loadClass(className);
6969
Method method = clazz.getDeclaredMethod("onLoad", Context.class);
70-
method.invoke(null, this.context); // static method, no instance
70+
method.invoke(null, context); // static method, no instance
7171
Logger.get().info("Loaded Class -> " + className + " Done!");
7272
} catch (Exception e) {
7373
Throwable real = e instanceof InvocationTargetException ? ((InvocationTargetException) e).getCause() : e;

0 commit comments

Comments
 (0)