Files
CubeAoleyunSN/app/src/main/aidl/com/aoleyun/sn/SystemInfoInterface.aidl
fanhuitong 2db37bdfa4 version:2.2.10.25
fix:
update:增加禁用app
2022-10-26 09:20:21 +08:00

22 lines
634 B
Plaintext

// SystemInfoInterface.aidl
package com.aoleyun.sn;
// Declare any non-default types here with import statements
interface SystemInfoInterface {
/**
* 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 getSerial();
List<String> getHideIcon();
List<String> getDisableIcon();
String getTopAppPackage();
boolean SystemPutInt(String name, int value);
void setDefaultDesktop(String pkg);
List<String> getDisableApp();
}