- 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
155 lines
5.3 KiB
Java
155 lines
5.3 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import com.google.protobuf.kotlin.DslList;
|
|
import com.google.protobuf.kotlin.DslProxy;
|
|
import com.google.protobuf.kotlin.ProtoDslMarker;
|
|
import gatewayprotocol.v1.BidRequestEventOuterClass;
|
|
import java.util.List;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class AppKt {
|
|
public static final AppKt INSTANCE = new AppKt();
|
|
|
|
@ProtoDslMarker
|
|
public static final class Dsl {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final BidRequestEventOuterClass.App.Builder _builder;
|
|
|
|
public /* synthetic */ Dsl(BidRequestEventOuterClass.App.Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(builder);
|
|
}
|
|
|
|
private Dsl(BidRequestEventOuterClass.App.Builder builder) {
|
|
this._builder = builder;
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final /* synthetic */ Dsl _create(BidRequestEventOuterClass.App.Builder builder) {
|
|
Intrinsics.checkNotNullParameter(builder, "builder");
|
|
return new Dsl(builder, null);
|
|
}
|
|
}
|
|
|
|
public final /* synthetic */ BidRequestEventOuterClass.App _build() {
|
|
BidRequestEventOuterClass.App build = this._builder.build();
|
|
Intrinsics.checkNotNullExpressionValue(build, "_builder.build()");
|
|
return build;
|
|
}
|
|
|
|
public final String getName() {
|
|
String name = this._builder.getName();
|
|
Intrinsics.checkNotNullExpressionValue(name, "_builder.getName()");
|
|
return name;
|
|
}
|
|
|
|
public final void setName(String value) {
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.setName(value);
|
|
}
|
|
|
|
public final void clearName() {
|
|
this._builder.clearName();
|
|
}
|
|
|
|
public final boolean hasName() {
|
|
return this._builder.hasName();
|
|
}
|
|
|
|
public final String getBundle() {
|
|
String bundle = this._builder.getBundle();
|
|
Intrinsics.checkNotNullExpressionValue(bundle, "_builder.getBundle()");
|
|
return bundle;
|
|
}
|
|
|
|
public final void setBundle(String value) {
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.setBundle(value);
|
|
}
|
|
|
|
public final void clearBundle() {
|
|
this._builder.clearBundle();
|
|
}
|
|
|
|
public final boolean hasBundle() {
|
|
return this._builder.hasBundle();
|
|
}
|
|
|
|
public static final class CatProxy extends DslProxy {
|
|
private CatProxy() {
|
|
}
|
|
}
|
|
|
|
public final DslList<String, CatProxy> getCat() {
|
|
List<String> catList = this._builder.getCatList();
|
|
Intrinsics.checkNotNullExpressionValue(catList, "_builder.getCatList()");
|
|
return new DslList<>(catList);
|
|
}
|
|
|
|
public final /* synthetic */ void addCat(DslList dslList, String value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.addCat(value);
|
|
}
|
|
|
|
public final /* synthetic */ void plusAssignCat(DslList<String, CatProxy> dslList, String value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
addCat(dslList, value);
|
|
}
|
|
|
|
public final /* synthetic */ void addAllCat(DslList dslList, Iterable values) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(values, "values");
|
|
this._builder.addAllCat(values);
|
|
}
|
|
|
|
public final /* synthetic */ void plusAssignAllCat(DslList<String, CatProxy> dslList, Iterable<String> values) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(values, "values");
|
|
addAllCat(dslList, values);
|
|
}
|
|
|
|
public final /* synthetic */ void setCat(DslList dslList, int i, String value) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.setCat(i, value);
|
|
}
|
|
|
|
public final /* synthetic */ void clearCat(DslList dslList) {
|
|
Intrinsics.checkNotNullParameter(dslList, "<this>");
|
|
this._builder.clearCat();
|
|
}
|
|
|
|
public final String getStoreUrl() {
|
|
String storeUrl = this._builder.getStoreUrl();
|
|
Intrinsics.checkNotNullExpressionValue(storeUrl, "_builder.getStoreUrl()");
|
|
return storeUrl;
|
|
}
|
|
|
|
public final void setStoreUrl(String value) {
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this._builder.setStoreUrl(value);
|
|
}
|
|
|
|
public final void clearStoreUrl() {
|
|
this._builder.clearStoreUrl();
|
|
}
|
|
|
|
public final boolean hasStoreUrl() {
|
|
return this._builder.hasStoreUrl();
|
|
}
|
|
}
|
|
|
|
private AppKt() {
|
|
}
|
|
}
|