I am trying to make a RemoteService ,I have followed this guide : http://www.techotopia.com/index.php/Android_Remote_Bound_Services_%E2%80%93_A_Worked_Example
this is my service declaration in the Manifest:
<service android:name=".RemoteService"
android:process=":InnolertRemoteProcess"
android:exported="true">
<intent-filter>
<action android:name="myService.RemoteService"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</service>
and this is how i bind to the service from my client app :
Intent intent = new Intent("myService.RemoteService");
bindService(intent, myConnection, Context.BIND_AUTO_CREATE);
i get this Exception :
java.lang.IllegalArgumentException: Service Intent must be explicit: Intent { act=myService.RemoteService }