android 如何从亚洲开发银行获取GSF(谷歌服务框架)ID?

23c0lvtd  于 2022-11-20  发布在  Android
关注(0)|答案(1)|浏览(96)

我发现这可以在java中通过

Uri URI = Uri.parse("content://com.google.android.gsf.gservices");

Play Store上的许多应用程序都可以做到这一点。但是,有没有办法通过ADB获得GSF ID?
我试探着:

content query --uri content://settings/secure/android_id #to get the android id
content query --uri content://settings/secure/ #to see the list of dictionaries but gsf id not in there
content query --uri content://com.google.android.gsf.gservice #doesn't return a value, and this should be where the java code in the app get the value from, already granted superuser for the shell.
0yg35tkg

0yg35tkg1#

$ adb root

$ adb shell 'sqlite3 /data/data/com.google.android.gsf/databases/gservices.db "select * from main where name = \"android_id\";"'

这可能会有帮助,将手机连接到您的PC,启用USB调试器。然后打开PC中adb文件夹的powershell或cmd并输入提供的命令。

相关问题