11 lines
320 B
Kotlin
11 lines
320 B
Kotlin
package com.simplemobiletools.smsmessenger.receivers
|
|
|
|
import android.content.BroadcastReceiver
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
|
|
class ScheduledMessageReceiver: BroadcastReceiver() {
|
|
override fun onReceive(context: Context?, intent: Intent?) {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|