我正在实施 Google 的许可系统,对于混淆器,我需要生成一个唯一的 ID。文件说
/**
* @param salt an array of random bytes to use for each (un)obfuscation
* @param applicationId application identifier, e.g. the package name
* @param deviceId device identifier. Use as many sources as possible to
* create this unique identifier.
*/
public AESObfuscator(byte[] salt, String applicationId, String deviceId) {
除了通过以下方式获得的包名和设备 ID 之外
private String android_id = Secure.getString(getContext().getContentResolver(),
Secure.ANDROID_ID);
我还可以使用哪些其他来源?
谢谢