Crazy tablet (made in China) [SOLVED]

Serge Bertet

Active Member
Licensed User
Longtime User
Hello happy tax payers :) (some will understand) ...

I have a low cost tablet "DuoDuoGo" issuing endlessly messages at high speed in the Logs tab of B4A IDE (when I uncheck the 'filter' checbox).
So I cannot use log without filter since my computer hang until I disconnect USB.

android.intent.action.BOOT_COMPLETED
Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:889 android.content.ContextWrapper.sendBroadcast:421 android.content.ContextWrapper.sendBroadcast:421 com.mediatek.settings.RestoreRotationReceiver.onReceive:79 android.app.ActivityThread.handleReceiver:3100
Broadcast: Intent { act=android.intent.action.BOOT_COMPLETED flg=0x9000010 cmp=com.android.settings/com.mediatek.settings.RestoreRotationReceiver (has extras) } ordered=false userid=0 callerApp=ProcessRecord{3598976 2175:com.android.settings/1000}
BDC-Calling onReceive: intent=Intent { act=android.intent.action.BOOT_COMPLETED flg=0x9000010 cmp=com.android.settings/com.mediatek.settings.RestoreRotationReceiver (has extras) }, receiver=com.mediatek.settings.RestoreRotationReceiver@53d9684
It looks like that come from com.mediatek using GCM (Google Cloud Messaging).
I tried to uninstall, stop or pause some applications also tried to disable wi-fi and phone without result.

Any idea on how to stop this?

Serge
 

aeric

Expert
Licensed User
Longtime User
I thought it is normal in most devices disregard of brands. I always check the filter checkbox.
 

Serge Bertet

Active Member
Licensed User
Longtime User
Thank you aeric, I tried with my phone I receive at lot of messages too but that stops after a while.

I get this on Logs when running my app :
Sleep not resumed (context is paused): b4a.example3.customlistview$ResumableSub_PanelClickHandler
Unexpected event (missing RaiseSynchronousEvents): temporisateur_checkedchange
Check the unfiltered logs for the full stack trace.

So I need to uncheck Logs filter

Code:
Sub Globals
    Private Temporisateur As B4XView ' RadioButton
    Private Programmateur As B4XView ' RadioButton
End Sub

Private Sub Temporisateur_CheckedChange(Checked As Boolean)

Private Sub Programmateur_CheckedChange(Checked As Boolean)

For Temporisateur receive messages in Logs not for the other one.
 

Serge Bertet

Active Member
Licensed User
Longtime User
I changed my activity entry point name from Activity_Start to ActivityStart and now it is working without Unexpected event error.
I did not know that Activity_Start is an event keyword.

... solved but still this tsunami of messages from my tablet.
 
Top