插件包增加隐藏状态(只能识别到插件化)
This commit is contained in:
@ -299,10 +299,13 @@ public abstract class BaseDetailActivity extends BaseActivity implements View.On
|
||||
public void onEventMainThread(EBPackage busFour) {
|
||||
if (gameEntity != null
|
||||
&& gameEntity.getApk() != null
|
||||
&& gameEntity.getApk().size() == 1) {
|
||||
String packageName = gameEntity.getApk().get(0).getPackageName();
|
||||
if (packageName.equals(busFour.getPackageName())) {
|
||||
initDownload(false);
|
||||
&& gameEntity.getApk().size() > 0) {
|
||||
for (ApkEntity apkEntity : gameEntity.getApk()) {
|
||||
String packageName = apkEntity.getPackageName();
|
||||
if (packageName.equals(busFour.getPackageName())) {
|
||||
ApkActiveUtils.filterHideApk(gameEntity);
|
||||
initDownload(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user