version:8.5

fix:
update:接口优化,固定横屏,取消地图
This commit is contained in:
2023-02-06 19:06:41 +08:00
parent a2ef127a4d
commit f8b3d96ced
30 changed files with 618 additions and 695 deletions

View File

@@ -0,0 +1,31 @@
// IGetInfoInterface.aidl
package com.uiui.sn;
// Declare any non-default types here with import statements
interface IGetInfoInterface {
/**
* Demonstrates some basic types that you can use as parameters
* and return values in AIDL.
*/
void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
double aDouble, String aString);
//获取sn
String getSerial();
//获取用户信息
String getUserInfo();
//获取隐藏APP
List<String> getHideAPP();
//获取禁止打开的APP
List<String> getForbidAPP();
//获取app设置
String getAppTimeControl();
//获取整机设置
String getSnTimeControl();
//获取系统设置
String getSetting();
//获取定位结果
String getMapResult();
}