// 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); }