如何使用NativeScript获取主要的Google帐户?

时间:2018-11-03 08:36:54

标签: android nativescript

是否可以使用NativeScript在Android中检索有关主要Google帐户的信息?

1 个答案:

答案 0 :(得分:1)

它与您在Android中的操作相同,只是语法在这里是JavaScript。

使用nativescript-permissions插件来获得GET_ACCOUNTS权限,清单中也应该存在该权限。

然后访问客户经理以获取Google帐户的电子邮件地址

import * as app from 'tns-core-modules/application';

const accounts = android.accounts.AccountManager.get(app.android.context).getAccountsByType("com.google")
if (accounts.length) {
  const email = accounts[0].name;
}