Debug: clear contacts cache

This commit is contained in:
M66B 2021-10-02 08:13:12 +02:00
parent b7fd69be32
commit dfe0dea265
1 changed files with 8 additions and 0 deletions

View File

@ -683,6 +683,14 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
drawerLayout.closeDrawer(drawerContainer);
onMenuSetup();
}
}, new Runnable() {
@Override
public void run() {
if (BuildConfig.DEBUG) {
ContactInfo.clearCache(ActivityView.this, true);
ToastEx.makeText(ActivityView.this, R.string.title_completed, Toast.LENGTH_LONG).show();
}
}
}));
adapterNavMenu.set(menus, nav_expanded);