version:4.5

fix:
update:增加远程获取sn接口
This commit is contained in:
2022-05-18 15:47:37 +08:00
parent 5b335c3029
commit 1b83a79957
6 changed files with 117 additions and 25 deletions

View File

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