mirror of https://github.com/tasks/tasks
Move GoogleAccountManager to googleplay flavor
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…
Reference in New Issue