Service module won't go away

coder22

Member
Licensed User
Longtime User
Hi, I'm getting strange behavior from a service module from a previous project. When I run any new or b4a sample project the log shows my old service module starts running with Create and Start.

The module isn't attached/shown in any of the new projects. Anybody know what could be going on? Thanks!
 

coder22

Member
Licensed User
Longtime User
I thought clearing the logs was the problem but it's not. I'm working on a new project and Main is the only activity/module.

But the log shows that, that former service module runs: Create, Start after Main starts. :sign0085:
 
Upvote 0

coder22

Member
Licensed User
Longtime User
Yes it does Erel. On any and all projects I run.
And on the camera example project I'm trying now the service is starting before Main.
I designated the service as Sticky in my former app, if that helps any. Thanks!
 
Last edited:
Upvote 0

coder22

Member
Licensed User
Longtime User
Sure:
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
** Activity (main) Pause, UserClosed = false **
** Activity (main) Create, isFirst = false **
** Activity (main) Resume **
** Service (acall) Create **
** Service (acall) Start **

I think I see what's happening now. Apparently the service of the app on my phone must ocassionally restart while I'm working on a different project and that is appearing in the log of what I'm working on.
 
Upvote 0
Top