fix 修复一些反馈的问题

This commit is contained in:
2023-09-22 11:05:02 +08:00
parent f3195bbcf8
commit 00db8a00c7
6 changed files with 14 additions and 3 deletions

View File

@@ -52,6 +52,9 @@ public class OpenAdManager {
if (list != null && list.isEmpty()) {
return;
}
if(CommonAppContext.getTopActivity()==null){
return;
}
LiveNetManager.get(CommonAppContext.getTopActivity())
.activityPopup(new HttpCallback<List<OpenAdModel>>() {
@Override

View File

@@ -143,6 +143,7 @@ public class PluginManager {
private void loadSo(File dir, String file) {
file += ".so";
if (new File(dir.getAbsolutePath() + File.separator + file).exists()) {
Log.d(TAG, "加载 " + dir.getAbsolutePath() + File.separator + file);
System.load(dir + File.separator + file);
Log.d(TAG, "加载成功 " + dir + File.separator + file);
} else {