This commit is contained in:
ZhanGSKen 2025-02-14 06:25:35 +08:00
parent 4f37b6f0e3
commit 464f2da89f
3 changed files with 5 additions and 12 deletions

View File

@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Fri Feb 14 06:07:06 HKT 2025
#Thu Feb 13 22:24:27 GMT 2025
stageCount=2
libraryProject=libappbase
baseVersion=1.5
publishVersion=1.5.1
buildCount=2
buildCount=3
baseBetaVersion=1.5.2

View File

@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Thu Feb 13 21:48:00 GMT 2025
#Thu Feb 13 22:23:25 GMT 2025
stageCount=2
libraryProject=libappbase
baseVersion=1.5
publishVersion=1.5.1
buildCount=2
buildCount=3
baseBetaVersion=1.5.2

View File

@ -13,17 +13,10 @@ public class SOSService extends Service {
public static final String TAG = "SOSService";
private final ISOSService.Stub binder = new ISOSService.Stub() {
@Override
public String getMessage() throws RemoteException {
return "Hello from Service";
}
};
@Override
public IBinder onBind(Intent intent) {
return binder;
return null;
}
}