Questions tagged [abortbroadcast]

In computer networking, broadcasting refers to transmitting a packet that will be received by every device on the network. In practice, the scope of the broadcast is limited to a broadcast domain. This tag relates to aborting a broadcast order.

In computer networking, broadcasting refers to transmitting a packet that will be received by every device on the network. In practice, the scope of the broadcast is limited to a broadcast domain.

Use this tag for questions regarding how to abort planned broadcasts.

7 questions
5
votes
1 answer

Java Block Incoming SMS in kitkat 4.4

I am developing an android application that will block incoming sms from specific numbers i have successfully achieved this. The app is working fine in other versions except the version 4.4.4. I have set its periority but nothing worked for…
Mehtab Ahmed
  • 499
  • 3
  • 16
3
votes
1 answer

Is there a list of ordered Broadcast receiver's list?

Is there a way in Android to determine which BroadcastReceivers are ordered ones? I was testing the abortBroadcast() function however, none of the broadcast receivers that I tested were ordered.
Ainee
  • 33
  • 4
2
votes
1 answer

abortbroadcast for incoming call

I know there has been a lot of discussion already on the subject of abortBroadcast for incomming calls. Is their anyone who has found a way around this problem. I'm trying to create an app that when an incoming phonecall is answered the native…
0
votes
0 answers

Android: showing an received SMS

I am creating an application for android OS, which allows user to send encrypted SMS to other users. But my application has only interface for sending an SMS, not for showing it. When application receives an SMS, I wan't to decrypt it and then…
M.Veli
  • 519
  • 1
  • 6
  • 15
0
votes
0 answers

Kit Kat SMS changes affecting Jelly Bean 4.3?

I have some apps that use SMS broadcast receivers to exchange messages with a high priority and then use abortBroadcast so that the system does not get the message. I have a LG 2.33 phone and a Galaxy S3 phone running jelly bean 4.3 that I use for…
Dean Blakely
  • 3,535
  • 11
  • 51
  • 83
0
votes
2 answers

AbortBroadcast not working for MMS

I am trying to abort a particulat text if it is an MMS and is originating from a particular number. I have used abortBroadcast(). I am successful in detecting if it is an MMS or not but after that abortBroadcast does not work. Also can someone…
android_eng
  • 1,370
  • 3
  • 17
  • 40
0
votes
0 answers

abortBroadcast() deletes SMS in LG device

1) In my app I need to block SMS app notifications on certain conditions. I've used abortBroadcast(). It's working fine except in my LG device. In LG device no SMS notification is shown but it also deletes the SMS from inbox. Any help is…