6.6.2 - Alpha2 - 尝试恢复 com.stardust 前缀包以便提升代码兼容性

This commit is contained in:
SuperMonster003
2025-01-15 00:12:07 +08:00
parent b44eae18d9
commit 1023e1733d
365 changed files with 34340 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
package com.stardust.autojs.rhino;
import org.jetbrains.annotations.NotNull;
import java.io.File;
/**
* Created by Stardust on 2017/4/5.
*/
public class AndroidClassLoader extends org.autojs.autojs.rhino.AndroidClassLoader {
public AndroidClassLoader(@NotNull ClassLoader parent, @NotNull File cacheDir) {
super(parent, cacheDir);
}
}