- 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
38 lines
904 B
Java
38 lines
904 B
Java
package com.android.billingclient.api;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class QueryPurchasesParams {
|
|
public final String zza;
|
|
|
|
public static class Builder {
|
|
public String zza;
|
|
|
|
public /* synthetic */ Builder(zzbs zzbsVar) {
|
|
}
|
|
|
|
public QueryPurchasesParams build() {
|
|
if (this.zza != null) {
|
|
return new QueryPurchasesParams(this, null);
|
|
}
|
|
throw new IllegalArgumentException("Product type must be set");
|
|
}
|
|
|
|
public Builder setProductType(String str) {
|
|
this.zza = str;
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ QueryPurchasesParams(Builder builder, zzbt zzbtVar) {
|
|
this.zza = builder.zza;
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return new Builder(null);
|
|
}
|
|
|
|
public final String zza() {
|
|
return this.zza;
|
|
}
|
|
}
|