Files
XiaoxintongSystemOS/app/src/main/aidl/com/uiuios/sn/IGetInfoInterface.aidl
Fanhuitong bf183a1dc2 version:3.6
fix:去点腾讯推送
update:去掉系统节点
2023-08-26 15:27:31 +08:00

31 lines
876 B
Plaintext

// IGetInfoInterface.aidl
package com.uiuios.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 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);
}