- 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
40 lines
1.0 KiB
Java
40 lines
1.0 KiB
Java
package com.android.billingclient.api;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class AcknowledgePurchaseParams {
|
|
public String zza;
|
|
|
|
public static final class Builder {
|
|
public String zza;
|
|
|
|
public /* synthetic */ Builder(zza zzaVar) {
|
|
}
|
|
|
|
public AcknowledgePurchaseParams build() {
|
|
String str = this.zza;
|
|
if (str == null) {
|
|
throw new IllegalArgumentException("Purchase token must be set");
|
|
}
|
|
AcknowledgePurchaseParams acknowledgePurchaseParams = new AcknowledgePurchaseParams(null);
|
|
acknowledgePurchaseParams.zza = str;
|
|
return acknowledgePurchaseParams;
|
|
}
|
|
|
|
public Builder setPurchaseToken(String str) {
|
|
this.zza = str;
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ AcknowledgePurchaseParams(zzb zzbVar) {
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return new Builder(null);
|
|
}
|
|
|
|
public String getPurchaseToken() {
|
|
return this.zza;
|
|
}
|
|
}
|