show a notification at receiving an SMS

This commit is contained in:
tibbi 2020-04-04 21:53:58 +02:00
parent 29c0f928ca
commit 1fe2f10d53
3 changed files with 75 additions and 2 deletions

View file

@ -160,7 +160,7 @@ fun Context.getNameFromPhoneNumber(number: String): Int? {
return null
}
fun Context.insertNewSMS(address: String, subject: String, body: String, date: Long) {
fun Context.insertNewSMS(address: String, subject: String, body: String, date: Long, threadID: Long) {
val uri = Telephony.Sms.CONTENT_URI
val contentValues = ContentValues().apply {
put(Telephony.Sms.ADDRESS, address)
@ -168,6 +168,7 @@ fun Context.insertNewSMS(address: String, subject: String, body: String, date: L
put(Telephony.Sms.BODY, body)
put(Telephony.Sms.DATE, date)
put(Telephony.Sms.READ, 0)
put(Telephony.Sms.THREAD_ID, threadID)
put(Telephony.Sms.TYPE, Telephony.Sms.MESSAGE_TYPE_INBOX)
}