update:2020.5.8

fix:增加app内部网页管控
add:静默下载显示网速,单例toast
This commit is contained in:
2020-05-08 16:21:53 +08:00
parent 524d160f10
commit fbe3acd02b
14 changed files with 337 additions and 95 deletions

View File

@@ -304,7 +304,7 @@ public class ApkUtils {
}
public static boolean installApp(Context context, String apkPath) {
ToastTool.show("正在安装应用...");
ToastUtil.show("正在安装应用...");
Process process = null;
BufferedReader successResult = null;
BufferedReader errorResult = null;
@@ -349,7 +349,7 @@ public class ApkUtils {
public static void installApkInSilence(String installPath, String packageName) {
ToastTool.show("正在安装应用...");
ToastUtil.show("正在安装应用...");
Class<?> pmService;
Class<?> activityTherad;

View File

@@ -191,5 +191,10 @@ public class Configure {
public static final String GET_DEVICES_TAGS = HTTP_TAG_HEAD_NEW + "Sn/getSnTag";
//获取设备标签
public static final String DELETE_GEDEVICE_ALIAS = HTTP_TAG_HEAD_NEW + "Sn/deleteAliases";
//浏览器书签主页设置
public static final String SET_HOMEPAG_TAG = HTTP_TAG_HEAD_NEW + "Label";
//
public static final String SET_APPINSIDEWEB= HTTP_TAG_HEAD_NEW + "Appground";
}