mirror of
https://github.com/etesync/android
synced 2025-01-23 14:10:54 +00:00
Import: Add an alias for our addressbook and davdroid account types.
This commit is contained in:
parent
861d5e4b4e
commit
eb95eada91
@ -6,6 +6,7 @@ import android.content.pm.PackageManager;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
|
||||
import com.etesync.syncadapter.App;
|
||||
import com.etesync.syncadapter.R;
|
||||
|
||||
import java.util.HashMap;
|
||||
@ -24,7 +25,12 @@ class AccountResolver {
|
||||
// Hardcoded swaps for known accounts:
|
||||
if (accountName.equals("com.google")) {
|
||||
accountName = "com.google.android.googlequicksearchbox";
|
||||
} else if (accountName.equals(App.getAddressBookAccountType())) {
|
||||
accountName = App.getAccountType();
|
||||
} else if (accountName.equals("at.bitfire.davdroid.address_book")) {
|
||||
accountName = "at.bitfire.davdroid";
|
||||
}
|
||||
|
||||
AccountInfo ret = cache.get(accountName);
|
||||
if (ret == null) {
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user