ScreenStreamService.java 421 B

12345678910111213141516
  1. package com.izouma.mobilecybergames;
  2. import android.app.Service;
  3. import android.content.Intent;
  4. import android.os.IBinder;
  5. public class ScreenStreamService extends Service {
  6. public ScreenStreamService() {
  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. }