- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
41 lines
1.3 KiB
Java
41 lines
1.3 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import android.text.TextUtils;
|
|
import android.util.Base64;
|
|
import java.io.ByteArrayInputStream;
|
|
import java.io.ByteArrayOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.ObjectInputStream;
|
|
import java.io.ObjectOutputStream;
|
|
import java.util.HashMap;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class zzatq {
|
|
private static final String zza = "zzatq";
|
|
|
|
public static HashMap zza(String str) {
|
|
try {
|
|
if (TextUtils.isEmpty(str)) {
|
|
return null;
|
|
}
|
|
return (HashMap) new ObjectInputStream(new ByteArrayInputStream(Base64.decode(str.getBytes(), 0))).readObject();
|
|
} catch (IOException | ClassNotFoundException unused) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
try {
|
|
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
|
ObjectOutputStream objectOutputStream = new ObjectOutputStream(byteArrayOutputStream);
|
|
objectOutputStream.writeObject(zzb());
|
|
objectOutputStream.close();
|
|
return Base64.encodeToString(byteArrayOutputStream.toByteArray(), 0);
|
|
} catch (IOException unused) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public abstract HashMap zzb();
|
|
}
|