This commit is contained in:
wangcongtao
2020-03-31 17:08:42 +08:00
parent b5ff135c5b
commit 668d91e3d2
7 changed files with 13 additions and 4 deletions

View File

@@ -40,10 +40,10 @@ public class AppFilterImpl implements AppFilter {
if ( isFilterPackages( packageInfo ) ) {
return true;
}
if ( noLaunchIntent( packageInfo ) ) {
if ( !AppEnumHelper.isCustomizedApp( packageInfo.packageName ) ) {
return true;
}
if ( !AppEnumHelper.isCustomizedApp( packageInfo.packageName ) ) {
if ( noLaunchIntent( packageInfo ) ) {
return true;
}
return false;

View File

@@ -74,7 +74,7 @@ public enum AppEnum {
FreshThings( "新鲜事", "com.zhidao.fresh.things", R.drawable.module_apps_ic_fresh_things ),
// 个人中心
PersonCenter( "个人中心", "com.zhidao.auto.personal ", R.drawable.module_apps_ic_fresh_things ),
PersonCenter( "个人中心", "com.zhidao.auto.personal", R.drawable.module_apps_ic_personal_center ),
;
private String mName;