version:3.6

fix:去点腾讯推送
update:去掉系统节点
This commit is contained in:
2023-08-26 15:27:31 +08:00
parent 66171ac7e5
commit bf183a1dc2
116 changed files with 2566 additions and 1751 deletions

View File

@@ -11,21 +11,21 @@ interface IGetInfoInterface {
void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
double aDouble, String aString);
//获取sn
/*获取sn*/
String getSerial();
//获取用户信息
String getUserInfo();
//获取隐藏APP
List<String> getHideAPP();
//获取禁止打开的APP
List<String> getForbidAPP();
//获取app设置
String getAppTimeControl();
//获取整机设置
String getSnTimeControl();
//获取系统设置
String getSetting();
//获取定位结果
/*获取定位结果*/
String getMapResult();
}
/*获取WiFi名*/
String getWifiSsid();
/*获取蓝牙名*/
String getBluetoothSsid();
/*写入系统数据库*/
boolean SystemPutInt(String name, int value);
/*结束进程*/
void killBackgroundProcesses(String pkg);
/*设置launcher3为默认*/
void openLauncher3();
/*设置默认桌面*/
void setDefaultDesktop(String pkgName, String className);
}