Skip to content

Instantly share code, notes, and snippets.

@Axxiss
Created May 21, 2012 13:09
Show Gist options
  • Save Axxiss/2762238 to your computer and use it in GitHub Desktop.
Save Axxiss/2762238 to your computer and use it in GitHub Desktop.
Service definition on AndroidManifest
<service
android:name=".authenticator.AuthenticationService"
android:exported="true" >
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment