CrackMe.apk

Download file
    package kotlin.reflect.jvm.internal.impl.descriptors;

import kotlin.jvm.functions.Function1;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.Lambda;
import kotlin.reflect.jvm.internal.impl.name.FqName;

/* compiled from: PackageFragmentProviderImpl.kt */
final class PackageFragmentProviderImpl$getSubPackagesOf$2 extends Lambda implements Function1<FqName, Boolean> {
    final /* synthetic */ FqName $fqName;

    /* JADX INFO: super call moved to the top of the method (can break code semantics) */
    PackageFragmentProviderImpl$getSubPackagesOf$2(FqName fqName) {
        super(1);
        this.$fqName = fqName;
    }

    public final Boolean invoke(FqName fqName) {
        Intrinsics.checkNotNullParameter(fqName, "it");
        return Boolean.valueOf(!fqName.isRoot() && Intrinsics.areEqual((Object) fqName.parent(), (Object) this.$fqName));
    }
}
    
Download file