e-ntfy-android/app/src/fdroid/java/io/heckel/ntfy/firebase/FirebaseService.kt

13 lines
272 B
Kotlin
Raw Normal View History

2021-11-24 16:12:51 -05:00
package io.heckel.ntfy.firebase
2021-11-24 22:16:36 -05:00
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
}
2021-11-24 16:12:51 -05:00
}