我已经在向我的服务器发送请求的多个PC上安装了BlueStacks。如果使用Phone / Tab,那么我可以获取IMEI号并检测哪个客户端正在发送请求并对其进行身份验证。但是从BlueStacks,我可以获取什么唯一标识符?像运行BlueStacks的PC的MAC地址或其他东西? 有人可以建议吗?
答案 0 :(得分:0)
每个设备都有唯一的设备ID,您可以使用以下代码获取它:
import android.provider.Settings.Secure;
String uniqueId = Secure.getString(getContext().getContentResolver(),Secure.ANDROID_ID);