|
@@ -0,0 +1,15 @@
|
|
|
+package club.thepenguins.android.services;
|
|
|
+
|
|
|
+import android.app.Service;
|
|
|
+import android.content.Intent;
|
|
|
+import android.os.IBinder;
|
|
|
+
|
|
|
+import androidx.annotation.Nullable;
|
|
|
+
|
|
|
+public class NotificationService extends Service {
|
|
|
+ @Nullable
|
|
|
+ @Override
|
|
|
+ public IBinder onBind(Intent intent) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+}
|