0

我正在使用以下代码获取 ANDROID_ID

String androidID = Secure.getString(getContext().getContentResolver(), Secure.ANDROID_ID);

但是对于工作资料,我得到的同一个应用程序的 ANDROID_ID 与部署为普通用户应用程序时不同。

是否为工作和个人生成了两个不同的 ANDROID_ID?

4

1 回答 1

0

我肯定会在我们的设备上看到这种行为。您可以使用 adb 在命令行中对其进行测试。这是一个示例脚本:(返回的 XXXXX 只是我将系统中的 android_ID 匿名化)。

$ adb shell pm list users
Users:
    UserInfo{0:Owner:13} running
    UserInfo{10:Work profile:30} running

$ adb shell settings --user 0 get secure android_id
XXXXXX6d13c171c

$ adb shell settings --user 10 get secure android_id
XXXXXX6b3d28a2c9
于 2017-10-12T11:52:37.170 回答