From 472108e0f270489e3f9fba0e8c20f12325963f66 Mon Sep 17 00:00:00 2001 From: Milk <1871357815@qq.com> Date: Sun, 9 Jan 2022 15:44:34 +0800 Subject: [PATCH] support android 12 --- .../java/top/niunaijun/blackbox/core/env/BEnvironment.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bcore/src/main/java/top/niunaijun/blackbox/core/env/BEnvironment.java b/Bcore/src/main/java/top/niunaijun/blackbox/core/env/BEnvironment.java index 573481a..165c1ec 100644 --- a/Bcore/src/main/java/top/niunaijun/blackbox/core/env/BEnvironment.java +++ b/Bcore/src/main/java/top/niunaijun/blackbox/core/env/BEnvironment.java @@ -18,9 +18,9 @@ public class BEnvironment { private static final File sVirtualRoot = new File(BlackBoxCore.getContext().getCacheDir().getParent(), "virtual"); private static final File sExternalVirtualRoot = BlackBoxCore.getContext().getExternalFilesDir("virtual"); - public static File JUNIT_JAR = new File(getCacheDir(), "junit.jar"); - public static File EMPTY_JAR = new File(getCacheDir(), "empty.jar"); - public static File VM_JAR = new File(getCacheDir(), "vm.jar"); + public static File JUNIT_JAR = new File(getCacheDir(), "junit.apk"); + public static File EMPTY_JAR = new File(getCacheDir(), "empty.apk"); + public static File VM_JAR = new File(getCacheDir(), "vm.apk"); public static void load() { FileUtils.mkdirs(sVirtualRoot);