version:1.0.0.

bugfixes:
update:修改包名,更换aidl
This commit is contained in:
2025-11-18 15:38:34 +08:00
parent ac31192a08
commit c24b913bc2
245 changed files with 895 additions and 1056 deletions

View File

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