RecorderService.java 408 B

12345678910111213141516
  1. package me.yoqi.screenrecorder;
  2. import android.app.Service;
  3. import android.content.Intent;
  4. import android.os.IBinder;
  5. public class RecorderService extends Service {
  6. public RecorderService() {
  7. }
  8. @Override
  9. public IBinder onBind(Intent intent) {
  10. // TODO: Return the communication channel to the service.
  11. throw new UnsupportedOperationException("Not yet implemented");
  12. }
  13. }