I would like to start an Android service using a URI scheme. Is this possible?
At the moment I have the following:
<service android:name="com.domain.app.services.MyService" >
<intent-filter>
<data android:scheme="myapp1"/>
</intent-filter>
</service>
<receiver android:name="com.domain.app.receivers.MyReceiver" >
<intent-filter>
<data android:scheme="myapp2"/>
</intent-filter>
</receiver>
But when I try to start it with a browser writting the cusom URI scheme (myapp1://hello or myapp2://hello) niether of them are started.
Does someone know how to do this?