I have a service class. I have exported this class to jar and I have embed the jar in my client app.

When needed, I call the service class. When I try to do this, I get the following error:

Unable to start service Intent {comp={com.sample.service/com.sample.service.serviceClass}} : not found

I have other class apart from the service class, which I am able to access (create object of that class) which are inside the same jar.

I feel I have missed out some thing in my configuration or manifest or so.

Please help me identifying the same. My code is below:

public void onCreate(Bundle savedInstanceState) {    
      super.onCreate(savedInstanceState);  
      Intent intent = new Intent () ;  
      intent.setClassName("com.sample.service" ,"com.sample.service.serviceClass") ;  
      this.startService(intent) ; // when I call this line I get the message...  
      // binding other process continue  here   
}

Client manifest.xml

<service android:name="com.sample.service.serviceClass"  
            android:exported="true" android:label="@string/app_name" 
            android:process=":remote">
   <intent-filter><action android:name="com.sample.service.serviceClass"></action>
   </intent-filter>
</service>

Thanks in advance,
Vinay

link|improve this question

I tried to fix your code but in the source there are issues I felt I don't understand enough to attempt it. Basically you have an extra space in < service ...>, it should be <service ...>, but if you look at the source, you have a '/' before the two import statements and I am not certain if they are supposed to be there. I think the spaces after the '<' will be the cause of your problem. – James Black Aug 9 '10 at 11:15
Thanks james for the reply. Those spaces are given intentionally only in to display in the site. Inside the code, there are not spaces inside the tags. Even the "\" is only for correct display on the site.. Basically, I do not get any compilation errors in eclipse. Only on runtime, I get the message in LogCat – Vinay Aug 9 '10 at 11:55
feedback

3 Answers

up vote 14 down vote accepted

First, you do not need android:process=":remote", so please remove it, since all it will do is take up extra RAM for no benefit.

Second, since the <service> element contains an action string, use it:

public void onCreate(Bundle savedInstanceState) {    
      super.onCreate(savedInstanceState);  
      Intent intent=new Intent("com.sample.service.serviceClass");  
      this.startService(intent);
}
link|improve this answer
Dear Mr. Mark, I have added the remote because I need to access the same content from the different apps. I include this after read on the web that it is better to implement a remote service. I modified as per your suggestion and it is work fine now. Thanks once again. – Vinay Aug 9 '10 at 13:10
1  
@Vinay: "I need to access the same content from the different apps. " You still do not need android:process=":remote", so please remove it, since all it will do is take up extra RAM for no benefit. A remote service is one that offers an API via AIDL and has nothing to do with the android:process attribute. Here is a sample remote service: github.com/commonsguy/cw-advandroid/tree/master/AdvServices/… and here is a corresponding client of that service: github.com/commonsguy/cw-advandroid/tree/master/AdvServices/… – CommonsWare Aug 9 '10 at 13:14
Thanks for the input Mr. Mark. I will surely do it... – Vinay Aug 9 '10 at 14:05
feedback

For anyone else coming across this thread I had this issue and was pulling my hair out. I had the service declaration OUTSIDE of the '< application>' end tag DUH!

RIGHT:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  ...>
...
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity ...>
        ...
    </activity>    

    <service android:name=".Service"/>

    <receiver android:name=".Receiver">
        <intent-filter>
            ...
        </intent-filter>
    </receiver>        
</application>

<uses-permission android:name="..." />

WRONG but still compiles without errors:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  ...>
...
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity ...>
        ...
    </activity>

</application>

    <service android:name=".Service"/>

    <receiver android:name=".Receiver">
        <intent-filter>
            ...
        </intent-filter>
    </receiver>        

<uses-permission android:name="..." />

link|improve this answer
feedback

1) check if service declaration in manifest is nested in application tag

<application>
<service android:name="" />
</application>

2) check if your service.java is in the same package or diff package as the activity

<application>
<service android:name="com.package.helper.service" /> <!-- service.java exists in diff package -->
</application>

<application>
<service android:name=".service" /> <!-- service.java exists in same package -->
</application>
link|improve this answer
1  
with the dot or not? in my case:not,instead I use <service android:name="service" /> and it works.see stackoverflow.com/questions/2265020/… – DiveInto Sep 21 '11 at 8:36
with the dot, it should work too because at the top you define your package path – Jianhong Nov 2 '11 at 7:30
Dude, thanks so much for your answer. I've been wrestling with a friggin problem and it turns out my service was in a different package. If I could hug you I would! – racl101 Mar 7 at 21:58
haha, no problem dude. its all about helping one another. – Jianhong Mar 20 at 3:53
feedback

Your Answer

 
or
required, but never shown

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