do not allow using the app, if it isnt the default SMS handler

This commit is contained in:
tibbi 2020-04-04 16:44:40 +02:00
parent 8c29a55f86
commit 0f4e89c8a9
7 changed files with 152 additions and 7 deletions

View file

@ -0,0 +1,11 @@
package com.simplemobiletools.smsmessenger.services
import android.app.Service
import android.content.Intent
import android.os.IBinder
class HeadlessSmsSendService : Service() {
override fun onBind(intent: Intent?): IBinder? {
return null
}
}