我正在查看JumpNotes的代码,有一件事我只是不知道。
JumpNotes: AccountList.java
public static final String[] GOOGLE_ACCOUNT_REQUIRED_SYNCABILITY_FEATURES =
new String[]{ "service_ah" };
这用于获取Google帐户,如下所示:
mAccountManager.getAccountsByTypeAndFeatures(SyncAdapter.GOOGLE_ACCOUNT_TYPE,
SyncAdapter.GOOGLE_ACCOUNT_REQUIRED_SYNCABILITY_FEATURES,
什么是“service_ah”功能?这是什么意思?
有什么办法可以获取Android上Google帐户的身份验证器服务的来源?
最佳答案
从Android文档中:
我没有找到任何官方文档,但似乎每个功能都采用service_code的形式,其中代码代表Google服务。
从这个(过时的)list of services中,“ah”显然代表“Google Mashups Editor&Google App Engine”