#
whycq
2024-08-14 a5259c5238cf07b9a51b429a144eeac21864159e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.example.agvcontroller.socket;
 
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
 
import androidx.annotation.Nullable;
 
public class SocketService extends Service {
 
 
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}