mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-21 00:31:27 +00:00
17 lines
355 B
Java
17 lines
355 B
Java
![]() |
package com.topjohnwu.magisk.utils;
|
||
|
|
||
|
import android.content.Context;
|
||
|
|
||
|
import java.io.File;
|
||
|
|
||
|
public class DynAPK {
|
||
|
|
||
|
private static File dynDir;
|
||
|
|
||
|
public static File current(Context context) {
|
||
|
if (dynDir == null)
|
||
|
dynDir = new File(context.getFilesDir().getParent(), "dyn");
|
||
|
return new File(dynDir, "current.apk");
|
||
|
}
|
||
|
}
|