标签: android firebase firebase-authentication
我希望我的应用用户只能同时通过一台设备登录。我如何实现这一目标?
答案 0 :(得分:1)
您可以在注册时在Firebase中添加设备ID,并在登录时进行检查。您可以按如下方式获取设备ID:
private String android_id = Secure.getString( getContext().getContentResolver(), Secure.ANDROID_ID );
或者您可以浏览here。