如何在没有代码的情况下获取settings.secure.android\u id值?

bxpogfeg  于 2021-06-29  发布在  Java
关注(0)|答案(1)|浏览(310)

所以我基本上是在做生意 android application ,为了防止其他人使用我的应用程序,我决定使用 android secure ID ,我用这个代码得到:

String androidId = Settings.Secure.getString(getContentResolver(), Settings.Secure.ANDROID_ID);

我只是想知道客户是否有办法得到这个 ID 自己下载之前 app ? 它能在某处的设置中找到还是不可能?
我试着在网上读了很多关于这个的文章,但是没有找到任何有用的,谢谢!

jjjwad0x

jjjwad0x1#

也许这个答案会对你有所帮助,https://android.stackexchange.com/questions/35659/where-can-i-find-the-android-id-on-my-device. 最上面的答案是
你可以通过亚洲开发银行。不需要根

shell@android:/ $ content query --uri content://settings/secure --projection value --where "name='android_id'"              

Row: 0 value=<your ID in hexadecimal>

相关问题