Mam klasę usług. Wyeksportowałem tę klasę do jar i umieściłem jar w mojej aplikacji klienckiej.
W razie potrzeby dzwonię do klasy obsługi. Kiedy próbuję to zrobić, pojawia się następujący błąd:
Unable to start service Intent {comp={com.sample.service/com.sample.service.serviceClass}} : not found
Mam inną klasę oprócz klasy usługi, do której mam dostęp (tworzenie obiektu tej klasy), które znajdują się w tym samym słoiku.
Czuję, że przegapiłem coś w mojej konfiguracji lub manifestacji.
Proszę, pomóż mi zidentyfikować to samo. Mój kod jest poniżej:
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
}
Klient 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>
Z góry dziękuję,
Vinay