version:1.1

fix:
update:优化
This commit is contained in:
2023-03-12 19:19:47 +08:00
parent a5e8623bed
commit 69bf8b4139
45 changed files with 658 additions and 4294 deletions

View File

@@ -0,0 +1,26 @@
// IGetInfoInterface.aidl
package com.uiui.zy;
// 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 getMapResult();
//获取mac作为sn
String getPushMac();
//是否激活
boolean SnIsActivation();
//设置为默认桌面
void setDefaultLauncher(String pkg);
//获取应用使用时长
String getAppUsedStatistics();
}