#
whycq
2024-08-08 37dc0d1d34799d6a858687041b36768df9ec7b9e
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;
    }
}