You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
413 B
Java

package com.example.jinyu_rfid;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class MyBluetoothService extends Service {
public MyBluetoothService() {
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
}