Skip to content

Instantly share code, notes, and snippets.

View mhdatie's full-sized avatar
:shipit:

Mo Atie mhdatie

:shipit:
View GitHub Profile
@mhdatie
mhdatie / AccountAuthenticator.java
Created February 22, 2016 15:00 — forked from burgalon/AccountAuthenticator.java
Implementing OAuth2 with AccountManager, Retrofit and Dagger
public class AccountAuthenticator extends AbstractAccountAuthenticator {
private final Context context;
@Inject @ClientId String clientId;
@Inject @ClientSecret String clientSecret;
@Inject ApiService apiService;
public AccountAuthenticator(Context context) {
super(context);