Move GoogleAccountManager to googleplay flavor

pull/795/head
Alex Baker 5 years ago
parent 1c7384feea
commit 57ae4d15fe

@ -0,0 +1,24 @@
package org.tasks.gtasks;
import android.accounts.Account;
import java.util.Collections;
import java.util.List;
import javax.inject.Inject;
public class GoogleAccountManager {
@Inject
public GoogleAccountManager() {}
public List<String> getAccounts() {
return Collections.emptyList();
}
private List<Account> getAccountList() {
return Collections.emptyList();
}
public Account getAccount(final String name) {
return null;
}
}

@ -0,0 +1,24 @@
package org.tasks.gtasks;
import android.accounts.Account;
import java.util.Collections;
import java.util.List;
import javax.inject.Inject;
public class GoogleAccountManager {
@Inject
public GoogleAccountManager() {}
public List<String> getAccounts() {
return Collections.emptyList();
}
private List<Account> getAccountList() {
return Collections.emptyList();
}
public Account getAccount(final String name) {
return null;
}
}
Loading…
Cancel
Save