- 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
956 B
Java
40 lines
956 B
Java
package com.android.billingclient.api;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ConsumeParams {
|
|
public String zza;
|
|
|
|
public static final class Builder {
|
|
public String zza;
|
|
|
|
public /* synthetic */ Builder(zzau zzauVar) {
|
|
}
|
|
|
|
public ConsumeParams build() {
|
|
String str = this.zza;
|
|
if (str == null) {
|
|
throw new IllegalArgumentException("Purchase token must be set");
|
|
}
|
|
ConsumeParams consumeParams = new ConsumeParams(null);
|
|
consumeParams.zza = str;
|
|
return consumeParams;
|
|
}
|
|
|
|
public Builder setPurchaseToken(String str) {
|
|
this.zza = str;
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ ConsumeParams(zzav zzavVar) {
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return new Builder(null);
|
|
}
|
|
|
|
public String getPurchaseToken() {
|
|
return this.zza;
|
|
}
|
|
}
|