I want to launch a Service from an another application.
Logcat error is:
Unable to start service Intent { cmp=com.oic.launchertest.service/.DataSyncService } U=0: not found
Manifest from the App with the Service
<service
android:name="com.oic.launchertest.service.DataSyncService"
android:enabled="true"
android:exported="true">
</service>
In the other App I want to launch the service with the following code
Intent intent=new Intent();
intent.setComponent( new ComponentName("com.oic.launchertest.service", "com.oic.launchertest.service.DataSyncService"));
startService(intent);
I could need some advice, what could cause this problem.
Thanks in advance.