Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.google.android.gms.common.stats;
|
||||
|
||||
import android.os.PowerManager;
|
||||
import android.os.Process;
|
||||
import android.text.TextUtils;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@Deprecated
|
||||
public class StatsUtils {
|
||||
public static String getEventKey(PowerManager.WakeLock wakeLock, String str) {
|
||||
String strValueOf = String.valueOf((((long) Process.myPid()) << 32) | ((long) System.identityHashCode(wakeLock)));
|
||||
if (true == TextUtils.isEmpty(str)) {
|
||||
str = "";
|
||||
}
|
||||
return String.valueOf(strValueOf).concat(String.valueOf(str));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user