version:2.0.1.9

update:2020.08.5
fix:修复锁屏后 相机管控失效
add:
This commit is contained in:
2020-08-05 09:47:34 +08:00
parent c5478df95c
commit c803fd6353
6 changed files with 35 additions and 31 deletions

View File

@@ -603,13 +603,17 @@ public class ApkUtils {
}};
public static List<String> systemapp = new ArrayList<String>() {{
//需要管控的系统应用
this.add("com.android.gallery3d");
this.add("com.android.deskclock");
this.add("com.android.music");
this.add("com.mediatek.camera");
this.add("com.android.documentsui");
this.add("com.android.soundrecorder");
this.add("com.android.browser");
this.add("com.android.gallery3d");//图库
this.add("com.android.deskclock");//时钟
this.add("com.android.music");//音乐
this.add("com.mediatek.camera");//相机
this.add("com.android.documentsui");//文件
this.add("com.android.soundrecorder");//录音机
this.add("com.android.browser");//浏览器
this.add("com.android.mms");//信息
this.add("com.android.fmradio");//FM电台
this.add("com.android.dialer");//电话
this.add("com.android.contacts");//通讯录
}};