サービスクラスがあります。このクラスをjarにエクスポートし、jarをクライアントアプリに埋め込みました。
必要に応じて、サービスクラスを呼び出します。これを実行しようとすると、次のエラーが発生します。
Unable to start service Intent {comp={com.sample.service/com.sample.service.serviceClass}} : not found
同じjar内にあるサービスクラスとは別に、アクセスできる(そのクラスのオブジェクトを作成する)クラスがあります。
構成やマニフェストなどで何かを見逃しているように感じます。
同じものを特定するのを手伝ってください。私のコードは以下の通りです:
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
}
クライアント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>
よろしく
お願いします、Vinay