B bluedude Well-Known Member Licensed User Longtime User Feb 22, 2012 #1 Hi, It seems like a rather stupid question but I want to start one of my services created by B4A from another project created with B4A. I use this right now: Dim i As Intent i.Initialize("", "") i.SetComponent("<package>/.testservice") StartService(i) Does not seem to work because the service does not start (have a toastmessage when it starts).
Hi, It seems like a rather stupid question but I want to start one of my services created by B4A from another project created with B4A. I use this right now: Dim i As Intent i.Initialize("", "") i.SetComponent("<package>/.testservice") StartService(i) Does not seem to work because the service does not start (have a toastmessage when it starts).
Erel B4X founder Staff member Licensed User Longtime User Feb 23, 2012 #2 Try: B4X: i.SetComponent("<package>/<package>.testservice") Upvote 0
B bluedude Well-Known Member Licensed User Longtime User Feb 23, 2012 #3 Not the solution That doesn't seem to work either. Upvote 0
B bluedude Well-Known Member Licensed User Longtime User Feb 23, 2012 #4 My mistake, the name was changed. Now I can call it but it says "without permission not exported from uid 10100. This happens in the calling APK. Upvote 0
My mistake, the name was changed. Now I can call it but it says "without permission not exported from uid 10100. This happens in the calling APK.