version:1.0

fix:
update:基本布局实现
This commit is contained in:
2023-02-09 16:03:47 +08:00
parent ace6008709
commit 34433f4f1f
360 changed files with 6211 additions and 8615 deletions

View File

@@ -1,31 +0,0 @@
// 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();
}

View File

@@ -1,14 +1,18 @@
// IAlarmAidlInterface.aidl
package com.alarmclock.uiui;
// IGetInfoInterface.aidl
package com.uiui.zysn;
// Declare any non-default types here with import statements
interface IAlarmAidlInterface {
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);
String getAlarm();
//获取sn
String getSerial();
//获取定位结果
String getMapResult();
}