私は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);
他にどのようなソースを使用できますか?
ありがとう