Re: [android-developers] SMS Broadcastreceiver not received when GO SMS Pro installed

2011-07-12 Thread Mark Murphy
On Mon, Jul 11, 2011 at 11:08 PM, rich friedel rich.frie...@gmail.com wrote:
 Yeah... Go SMS Pro really screws with things... the only thing I can figure 
 is they are absorbing the incoming broadcast and somehow not letting it 
 through so that other receivers can do what they need to do.

The OP had originally posted on StackOverflow -- here's the analysis:

http://stackoverflow.com/questions/6600266/suppress-block-broastreceiver-in-another-app/6600312

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Warescription: Three Android Books, Plus Updates, One Low Price!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] SMS Broadcastreceiver not received when GO SMS Pro installed

2011-07-11 Thread rich friedel
Yeah... Go SMS Pro really screws with things... the only thing I can figure is 
they are absorbing the incoming broadcast and somehow not letting it through so 
that other receivers can do what they need to do.

Personally I would hope that this type behavior from an app would not be 
possible. It seems that is not the case though.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] SMS Broadcastreceiver not received when GO SMS Pro installed

2011-07-04 Thread Android Geek
I have implemented an SMS receiver which intercepts incoming SMS
messages without any issues. However, when I install GO SMS Pro and
set Disable other message notification, then my app does not receive
any broadcast message even though I have set the priority on intent
filter very high. Is there a way to overcome so that my app always
receive a SMS broadcast irrespective of what user does on Go SMS Pro's
app, especially since my app does not show any UI pop-up notification?
As soon as I uninstall GO SMS Pro, my app starts getting incoming SMS
broadcasts and works fine.

Here is the log when an incoming SMS is received and GO SMS Pro is
installed. There is some magic done by GO SMS Pro which I don't
understand. Can someone explain what is done here and how can I make
sure my app does get ordered broadcast notification every time?

07-02 19:52:21.674: INFO/Zygote(25209): Zygote: pid 25209 has INTERNET
permission, then set capability for CAP_NET_RAW

07-02 19:52:21.820: INFO/ActivityThread(25209): Publishing provider go-
sms: com.jb.gosms.provider.GoSmsProvider

07-02 19:52:21.830: INFO/ActivityThread(25209): Publishing provider go-
mms-sms: com.jb.gosms.provider.GoMmsSmsProvider

07-02 19:52:21.834: INFO/ActivityThread(25209): Publishing provider
com.jb.gosms.im;com.jb.gosms.chat:
com.jb.gosms.im.database.ImContentProvider

07-02 19:52:21.842: INFO/ActivityThread(25209): Publishing provider
com.jb.gosms.schedule.Schedule: com.jb.gosms.schedule.ScheduleProvider

07-02 19:52:21.846: INFO/ActivityThread(25209): Publishing provider go-
mms: com.jb.gosms.provider.GoMmsProvider

07-02 19:52:21.959: DEBUG/dalvikvm(25209): GC_FOR_MALLOC freed 2657
objects / 173112 bytes in 30ms

07-02 19:52:22.182: DEBUG/dalvikvm(25209): Trying to load lib /data/
data/com.jb.gosms/lib/libHanzi2Pinyin.so 0x47d4cf70

07-02 19:52:22.182: DEBUG/dalvikvm(25209): Added shared lib /data/data/
com.jb.gosms/lib/libHanzi2Pinyin.so 0x47d4cf70

07-02 19:52:22.182: DEBUG/dalvikvm(25209): No JNI_OnLoad found in /
data/data/com.jb.gosms/lib/libHanzi2Pinyin.so 0x47d4cf70, skipping
init

07-02 19:52:22.186: INFO/Hanzi2Pinyin_Native(25209): InitLib in
ver=3141000

07-02 19:52:22.186: INFO/Hanzi2Pinyin_Native(25209): Init in

07-02 19:52:22.186: INFO/Hanzi2Pinyin_Native(25209): file size=155203

07-02 19:52:22.186: INFO/Hanzi2Pinyin_Native(25209): Init out

07-02 19:52:22.186: INFO/Hanzi2Pinyin_Native(25209): Instance out Init
= 21

07-02 19:52:22.186: INFO/Hanzi2Pinyin_Native(25209): InitLib out

07-02 19:52:22.467: DEBUG/dalvikvm(25209): GC_FOR_MALLOC freed 5960
objects / 376104 bytes in 29ms

07-02 19:52:22.815: DEBUG/IMS/Ims3GPP2SmsMessage(25209):
IMSLogcreateFromPdu : calling parsePdu

07-02 19:52:22.815: DEBUG/IMS/Ims3GPP2SmsMessage(25209): IMSLogpdu to
parse :
02100202070292A106A85A0008150003100730010610254E9D3A000306110702195220

07-02 19:52:22.815: DEBUG/IMS/Ims3GPP2SmsMessage(25209):
IMSLogparseAddress

07-02 19:52:22.815: DEBUG/IMS/Ims3GPP2SmsMessage(25209): IMSLogaddress
received :3233292992

07-02 19:52:22.815: DEBUG/IMS/Ims3GPP2SmsMessage(25209): IMSLogbearer
data received : 0003100730010610254E9D3A000306110702195220

07-02 19:52:22.815: ERROR/bearer data(25209): bearer data obtained 1

07-02 19:52:22.815: DEBUG/EMS(25209): messageType is 1 messageId is
115 hasUserDataHeader is false

07-02 19:52:22.858: DEBUG/IMS/Ims3GPP2SmsMessage(25209):
IMSLogcreateFromPdu : calling parsePdu

thanks!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] SMS BroadcastReceiver

2011-05-28 Thread Amita Dev
Hi,
Is SMS BroadcastReceiver normal or Ordered?
I am setting priority as 100 in androidManifest [ intent-filter ] and
calling abortBroadcast() in onReceive as well but even after that native SMS
application is getting called.

When I try this in emulator this works fine but when I run in my Android 2.3
device, native SMS application is getting called.

Is it Android version issue or I am missing something.

Thanks,
- A

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] SMS BroadcastReceiver

2010-03-05 Thread Ne0
Hi,

I am writing my own sms receiver app and i want it to catch all the
sms using a broadcast receiver. This on its own, is no problem, but i
want to be able to stop the message being passed to the messaging app.
Does anyone know if this is this possible?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en