x1ongzhu 6 лет назад
Родитель
Сommit
2b3f01ce12

+ 4 - 0
android/app/src/main/java/com/izouma/mobilecybergames/FloatWindowService.java

@@ -0,0 +1,4 @@
+package com.izouma.mobilecybergames;
+
+public class FloatWindowService {
+}

+ 16 - 0
android/app/src/main/java/com/izouma/mobilecybergames/ScreenStreamService.java

@@ -0,0 +1,16 @@
+package com.izouma.mobilecybergames;
+
+import android.app.Service;
+import android.content.Intent;
+import android.os.IBinder;
+
+public class ScreenStreamService extends Service {
+    public ScreenStreamService() {
+    }
+
+    @Override
+    public IBinder onBind(Intent intent) {
+        // TODO: Return the communication channel to the service.
+        throw new UnsupportedOperationException("Not yet implemented");
+    }
+}