Android :: Start A Service Which Is Defined In A Different Package?
Apr 25, 2010
I have two apps, one runs in namespace com.gtosoft.voyager and the other is com.gtosoft.dash. From com.gtosoft.dash I would like to start up the service which is defined in com.gtosoft.voyager...
I think I need an intent, but what arg(s) would I pass to the intent before kicking it off with startService()?
If they were in the same package I could just use
CODE:............................
View 1 Replies
Jun 9, 2009
I have a service class my.app.MyService that I'm attempting to launch from my.app.MyActivity as follows:
Intent svc = new Intent( this, MyService.class );
The manifest contains the entries:
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_SERVICE" />
<service android:name =".MyService" />
LogCat gives the message:
"Unable to start service Intent { comp={"my.app/ my.app.MyService" } } : not found"
Could someone kindly let me know what I am missing?
View 3 Replies
View Related
Jun 19, 2010
i'm a bit stuck with remote services in android. thing is i implemented a remote service in package "a.b.c" and i want other applications to be able to access this service. i got rid of the whole crappy aidl-stuff and designed the "interface" of the service to work via broadcasted intents. works fine so far...
problem is: how do i get a different application (different package, different project, maybe even a different developer, ...) to start/stop the service?
CODE:..........
This will crash my app immediately on startup. what did i do wrong? how will i get this to work?
once it's running, commands and data will be passed via broadcasts. so that should be no real problem...
View 1 Replies
View Related
Oct 29, 2013
I would automate some simple task (such start BT every day at 1 PM...and so on) some times ago I had an App that does it. But I don't remember the name.
View 2 Replies
View Related
Sep 6, 2010
I have a service that is running within the context of my application. It gets invoked at the start of the activity and then gets update when new data is inserted or deleted from the database. The problem is that everytime I start the activity , it restarts the service. As you may have guessed - not a very intuitive design. Therefore I was wondering if there is a way to determine if the service is already running before starting it. I know I can bind to the service but I do not want that since the main activity needs to exits after the database operation is completed. I know for system services, you can get the service details from the application context. How do you do it for user defined service?
View 3 Replies
View Related
Sep 8, 2010
implicit intent with class name as action defined in intentfilter. is not working. Only it it is defined as "android.intent.action." it is picked up ? is it so ?
I have app A with the following in manifest.xml file
CODE:.............
In app B, i tried to call the activity in A using below code.
CODE:.............
This code works. But not above line.
View 2 Replies
View Related
Aug 20, 2009
I am getting following message when i try to launch service.Also is there any specific path on file system where we need to place the .apk file which contains my serivce component only.
View 2 Replies
View Related
Jan 25, 2009
My application has 2 packages because one is shared with my other applications. I want to start an activity of the shared package.
I tried the following: Intent intent = new Intent(); intent.setClassName(shardedPackageName,sharedActivityName); startActivity(intent);
It throws an ActivityNotFoundException and suggests that the activity might not be in the manifest. But how do I list an acitivity from another package in the manifest?
View 5 Replies
View Related
May 6, 2010
I know how to update my own programs, and I know how to open programs using the a predefined Uri (for sms or email for example)
I need to know how I can create an Intent to open MyTracks or any other application that I don't know what intents they listen to.
I got this info from DDMS, but I havn't been succesful in turning this to an Intent I can use. This is taken from when opening MyTracks manually.
CODE:..................
View 2 Replies
View Related
Aug 6, 2010
Can someone tell me how to start new application knowing only its package name? I do not have information about what activity is the main one.
View 1 Replies
View Related
Jul 9, 2010
I have created a service that works great, it is launched from an activity at the moment. I'm looking to package it into a .jar file so that other people can add the jar to then their projects and then run the service. Can anyone tell me how I can launch this service from the app that it is included in?
View 3 Replies
View Related
Jul 8, 2010
I am writing a service that will be compiled into a .jar file for use in other apps. is there any way to get the name of the package that uses or launches the service?
View 2 Replies
View Related
Nov 22, 2010
I am trying to access a service in other package, but not able to get the binder.code...
In the ExampleActivity i am accessing the service by doing
but onServiceConnected( ) is not getting called, so i am not able to get the binder. But process everything is going fine , in the Eclipse console i am able
I tried with serComponent( ) & serClassName( ) as well, but for both the cases onServiceConnected( ) is not getting called. I googled and used the hint for listening boot completed and user present intents and starting the service in the broadcast receiver.
how can i access the service of other package (process).
View 2 Replies
View Related
Jul 17, 2012
OS: Ice Cream Sandwich
Device: Motorola Xoom
I am having issues with a simple service not running correctly. The logcat shows some force stopping on the installed apk. Also the broadcast receiver should listen to android.intent.action.ACTION_POWER_CONNECTED but it is not.
This all worked on froyo 2.2 on a samsung galaxy tab.
Here is the snippet from logcat when I do an 'adb install testService.apk:
Code:
D/AndroidRuntime(15251):
D/AndroidRuntime(15251): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime(15251): CheckJNI is OFF
D/AndroidRuntime(15251): Calling main entry com.android.commands.pm.Pm
I/ActivityManager( 153): Start proc com.android.defcontainer for service
[code]....
View 1 Replies
View Related
Nov 14, 2010
I am developing an Android app and I am doing some heavy work (bringing data from an online web page and parsing it to store in database) in a service. Currently, it is taking about 20+ mins and for this time my UI is stuck. I was thinking of using a thread in service so my UI doesn't get stuck but it is giving error.
View 1 Replies
View Related
Sep 3, 2010
I have a launcher activity which gets activated everytime i start the application and a service which complements it. Now as i press the return key from my main activity .Its Ondestroy gets called.Now i have nullify the pointer of the my launcher activity there. now i am listening through the service any event happening on the network after closing the launcher activity thread and if any event occurs i have to relaunch my launcher activity. i have tried intent but doesnot seems to get though it .
View 4 Replies
View Related
Oct 6, 2010
I have a service (input method) and from within that service I want to start and activity which was declared in the same manifest. The activity maybe running but in the background.
How do i check its presence and bring it to front, or optionally start this.
From what I can gather from other posts, this is about what I need to do:
CODE:..............
I don't knwo which of thest flags pertain to what I need to do. The docs are quite merky, and my random attempt at making this work failed.
View 4 Replies
View Related
Oct 16, 2009
My application has a background process which continuously waits on a socket for receiving messages and it should be started only once and at the time of application starting.Thus i want to do that background job in a service.
The service should not be started from the activity ,it should be started at the application starting.
How can i define the service,which will be started at the time of application starting?
If at all the service is started from activity.The activity can be destroyed and restarted.when this happens the service also be restarted .
View 7 Replies
View Related
May 15, 2009
We have a service. bindService() returns true. But our ServiceConnection is never called with onConnect(). The onCreate() of the service is never executed (neither is the onBind(), of course).
Except sometimes! (twice now, out of many many tries).
Remote service, local service, intent-filter, direct class invocation, "procedure" attribute, no procedure attribute, cupcake, 1.1, emulator, device ... we've tried 'em all!
We belive the service is found, and in the remote case, we see the new process always created ... but the dang service just isn't started. We aren't specifying any security settings and writing the simplest manifest entry we can....
View 4 Replies
View Related
Jul 4, 2010
I am trying to start a service from the BroadcastReceiver, but I keep getting the startService line marked as an error:
CODE:............
View 2 Replies
View Related
Jan 14, 2010
I am having service inside a .apk file. I want to automatically start this service when this package is downloaded from the browser and installed. Is it possible to automatically start the service when the .apk file gets installed using some special intents.
I am right now using activity and broadcast recievers to start the service . But however, I would like to start the service automatically when the apk file gets installed with out writting activity or broadcast recievers.
View 2 Replies
View Related
Sep 4, 2009
My service is not in the same package namespace as my application / activities.
I have
CODE:...........
The issue is that my service is in -- package com.myco.service.myservice and my activity is in -- package com.myco.test.myactivity
My questions are:
1. does my service *have* to be in the com.myco.test namespace?
2. if it doesn't, how do I specify the android:name for my activity and my service to work?
View 8 Replies
View Related
Mar 13, 2009
I have moved some intensive processing from my main thread to a service. My UI is hanging and then crashing when I start the service, even if I put the service start in a new thread started via
Thread updateThread = new Thread(null, backgroundRefresh2, "new_thread"); updateThread.start();
What am I doing wrong? Also, it seems like the cause of the eventual crash in the service/worker thread doesn't show up in LogCat.
View 11 Replies
View Related
Apr 17, 2009
Is it possible to start a service directly from the launcher by clicking the application icon?
I have no activity just a single service which I want to start when I click on the icon, however when I specify my service's intent-filters it seems that it will not be recognised from the launcher, therefore no icon is visible in android's launcher.
CODE:............
How to get the icon into the launcher.
View 4 Replies
View Related
Jun 14, 2010
How can I start a service from an Activity ?
View 4 Replies
View Related
Feb 25, 2010
In my app i have an activity from which i want to start an Service.
View 3 Replies
View Related
Mar 8, 2010
I'm trying to create a shortcut on the home screen that, when pressed, will start a service instead of an activity.
View 3 Replies
View Related
Aug 11, 2010
Is it possible to start an Activity from a Service? If yes, how can we achieve this?
View 1 Replies
View Related
May 6, 2010
I've been trying to start a service when a device boots up on android, but I cannot get it to work.
I've looked a number of links online but none of the code is working. Am I forgetting something? This is my code.
CODE:........................
View 4 Replies
View Related
Jan 24, 2010
I have a device management application, which essentially runs as a service in the background from boot. I'd like to start this application immediately after installation.
View 1 Replies
View Related