Манифест:
Код: Выделить всё
Код: Выделить всё
class SmsReceiver: BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
if (intent.action == Intents.SMS_RECEIVED_ACTION) {
Log.i("sms", "received")
}
}
}
Может кто-нибудь объяснить мне такое поведение Android?
Подробнее здесь: https://stackoverflow.com/questions/793 ... is-started