- 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
19 lines
422 B
Java
19 lines
422 B
Java
package com.singular.sdk;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class SingularLinkParams {
|
|
public String deeplink;
|
|
public boolean isDeferred;
|
|
public String passthrough;
|
|
|
|
public String getDeeplink() {
|
|
return this.deeplink;
|
|
}
|
|
|
|
public SingularLinkParams(String str, String str2, boolean z) {
|
|
this.deeplink = str;
|
|
this.passthrough = str2;
|
|
this.isDeferred = z;
|
|
}
|
|
}
|