gpt4 book ai didi

Android - Google App Invites - 获取推荐信息

转载 作者:行者123 更新时间:2023-11-30 01:54:18 26 4
gpt4 key购买 nike

我正在设计一款使用 Google App 邀请系统的应用。我想做的是通过某种方式获取发送邀请的人的电子邮件。

即用户 1 发送邀请 > 用户 2 安装应用程序 > Activity 显示“你在哪里被 User1@gmail.com 邀请”

到目前为止,我已经实现了 Google Tutorial它运行良好,允许人们邀请其他人安装该应用程序。

我认为必须对此进行更改,但我不确定

@Override
public void onReceive(Context context, Intent intent) {
// Create deep link intent with correct action and add play store referral information
Intent deepLinkIntent = AppInviteReferral.addPlayStoreReferrerToIntent(intent,
new Intent(context.getString(R.string.action_deep_link)));

// Let any listeners know about the change
LocalBroadcastManager.getInstance(context).sendBroadcast(deepLinkIntent);
}

最佳答案

我们可以像这样获取 GMail id :

try {
AccountManager accountManager = AccountManager.get(context);
Account account = getAccount(accountManager);
if (account == null) {
return "";
} else {
return account.name;
}
} catch (Exception ex) {
return "";
}

关于Android - Google App Invites - 获取推荐信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32514016/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com