• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.settings.accounts;
2 
3 import android.accounts.Account;
4 import android.content.Context;
5 
6 public class AccountFeatureProviderImpl implements AccountFeatureProvider {
7     @Override
getAccountType()8     public String getAccountType() {
9         return null;
10     }
11 
12     @Override
getAccounts(Context context)13     public Account[] getAccounts(Context context) {
14         return new Account[0];
15     }
16 }
17