Android Question sms intent notworking on kitkat..

im new on b4a.. when i try the smsinterceptor and installed on JB it works fine..

example when the body of my sms is "secret" it should then send a sms to the sender "good" but it will not display it in the default inbox...this works on JB.

the Problem is... when i try to install it on kitkat and run it... the intent and the sent sms is displayed on inbox...

is there a code missing in my app...?
thanks in advance...
 

marcick

Well-Known Member
Licensed User
Longtime User
Yes. Starting from KitKat you still can intercept SMS but not silently capture it without they appear in the inbox.
Also, you can't send SMS (you will see no error if you try but the SMS is not sent).
As Mark told, your app must be set as the defalut SMS app to do all of this.
But the main problem is that you need to write a new SMS client interface from scratch that allow the user to normally manage SMS. And this is a huge and complex job if you want to implement all the functions that the stock client has ...
 
Upvote 0
Top