- 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
749 B
Java
19 lines
749 B
Java
package androidx.fragment.app.strictmode;
|
|
|
|
import androidx.fragment.app.Fragment;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class TargetFragmentUsageViolation extends Violation {
|
|
public /* synthetic */ TargetFragmentUsageViolation(Fragment fragment, String str, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(fragment, (i & 2) != 0 ? null : str);
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public TargetFragmentUsageViolation(Fragment fragment, String str) {
|
|
super(fragment, str);
|
|
Intrinsics.checkNotNullParameter(fragment, "fragment");
|
|
}
|
|
}
|