Make FirebaseService an actual Service
This commit is contained in:
parent
bdca7994c0
commit
b9e86252c9
1 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
|||
package io.heckel.ntfy.firebase
|
||||
|
||||
class FirebaseService {
|
||||
// Dummy to keep F-Droid flavor happy
|
||||
import android.app.Service
|
||||
import android.content.Intent
|
||||
import android.os.IBinder
|
||||
|
||||
// Dummy to keep F-Droid flavor happy
|
||||
class FirebaseService : Service() {
|
||||
override fun onBind(intent: Intent?): IBinder? {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue