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

Commit 8b510c6

Browse files
authored
Update LibsManager.java
1 parent 7dd2364 commit 8b510c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
public class LibsManager {
1414
private static Context context;
1515
private static File cDir;
16-
//private final DexClassLoader dcl;
16+
1717
public LibsManager(Context ctx) {
18-
String dirPath = ctx.getDir("alvinqid", Context.MODE_PRIVATE).getAbsolutePath();
19-
File cDir = new File(dirPath, "cache/dexout");
18+
String dirPath = ctx.getCacheDir().getAbsolutePath();
19+
File cDir = new File(dirPath, "dexout");
2020
if(!cDir.exists()) cDir.mkdirs();
2121
this.cDir = cDir;
2222
this.context = ctx;

0 commit comments

Comments
 (0)