We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efaf1b9 commit 26aea67Copy full SHA for 26aea67
PluginCore/src/com/plugin/core/systemservice/AndroidAppIPackageManager.java
@@ -23,6 +23,7 @@
23
import com.plugin.util.RefInvoker;
24
import com.plugin.util.ResourceUtil;
25
26
+import java.io.File;
27
import java.lang.reflect.Method;
28
import java.util.ArrayList;
29
import java.util.Collection;
@@ -306,6 +307,8 @@ private static ApplicationInfo getApplicationInfo(PluginDescriptor pluginDescrip
306
307
info.dataDir = null;//需要时再添加
308
info.theme = pluginDescriptor.getApplicationTheme();
309
info.flags = info.flags | ApplicationInfo.FLAG_HAS_CODE;
310
+ //需要时再添加
311
+ //info.nativeLibraryDir = new File(pluginDescriptor.getInstalledPath()).getParentFile().getAbsolutePath() + "/lib";
312
return info;
313
}
314
0 commit comments