Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a weird issue with my Service not starting. I have my manifest file with the service, and have called it. But still it does not open up.

<service
android:name=".com.taxeeta.ForHire"
android:enabled="true" />

Calling the intent

Intent serviceIntent = new Intent();
serviceIntent.setAction("com.taxeeta.ForHire");
startService(serviceIntent);

Service

public class ForHire extends Service 

I wonder what I am missing here.

share|improve this question

4 Answers

up vote 2 down vote accepted

Just call startService(new Intent(getApplicationContext(),ForHire.class));

Every thing is fine in your menifest.

No need to set Action according to your menifest.

share|improve this answer
1  
downvote? really? this is the right answer, unlike the others – vmironov Jan 21 at 17:55
ooops, you actually forgot to create an Intent. But the idea is right – vmironov Jan 21 at 17:58
correct, let me edit it. – Deepchand Singh Jan 21 at 17:59
+1 for clear and simpler answer than mine – andr Jan 21 at 18:21

Change

android:name=".com.taxeeta.ForHire"

with

android:name="com.taxeeta.ForHire"

or if the service is on the root package

android:name=".ForHire"

Also, you should use Intent.setClass( ) instead of setAction, since you don't have an IntentFilter declared for your service and you most likely, trying to use an explicit intent.

share|improve this answer

When you Declare service in Manifest file use like this.

<service android:name=".ForHire">
<intent-filter>
     <action android:name="com.taxeeta.ForHire" />
</intent-filter>
</service> 

& call service Like this way.

Intent serviceIntent = new Intent();
serviceIntent.setAction("com.taxeeta.ForHire");
startService(serviceIntent);

For More information about Service refer this Documentation http://developer.android.com/guide/components/services.html

share|improve this answer

You have a problem in the declaration of the service in your manifest. Change it to:

<service android:name="com.taxeeta.ForHire" />

(notice the . [dot] removed). Also make sure service is a child element of your application element, which is a must for the service to be recognized by the Android OS.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.