Skip to content

Instantly share code, notes, and snippets.

@nalitzis
Created February 8, 2013 21:45
Show Gist options
  • Select an option

  • Save nalitzis/4742187 to your computer and use it in GitHub Desktop.

Select an option

Save nalitzis/4742187 to your computer and use it in GitHub Desktop.
<service
android:name="com.example.testbinder.ClientService"
android:process=":client_service"
android:exported="false"
>
<intent-filter >
<action android:name="com.example.testbinder.ClientService"></action>
</intent-filter>
</service>
<service
android:name="com.example.testbinder.ClientAidl"
android:process=":client_aidl_service"
android:exported="true"
>
<intent-filter >
<action android:name="com.example.testbinder.ClientAidl"></action>
</intent-filter>
</service>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment