CrackMe.apk

Download file
    package expo.modules.kotlin.defaultmodules;

import com.facebook.react.bridge.BaseJavaModule;
import com.facebook.react.bridge.ReadableArray;
import expo.modules.adapters.react.NativeModulesProxy;
import expo.modules.kotlin.Promise;
import expo.modules.kotlin.PromiseKt;
import expo.modules.kotlin.exception.UnexpectedException;
import java.lang.ref.WeakReference;
import java.util.Objects;
import kotlin.Metadata;
import kotlin.Unit;
import kotlin.jvm.functions.Function2;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.Lambda;

@Metadata(d1 = {"\u0000\u001c\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0006\n\u0002\u0010\u0011\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\u0010\u0000\u001a\u00020\u0001\"\u0006\b\u0000\u0010\u0002\u0018\u0001\"\u0006\b\u0001\u0010\u0003\u0018\u0001\"\u0006\b\u0002\u0010\u0004\u0018\u0001\"\u0006\b\u0003\u0010\u0005\u0018\u0001\"\u0006\b\u0004\u0010\u0006\u0018\u00012\u0010\u0010\u0007\u001a\f\u0012\b\b\u0001\u0012\u0004\u0018\u00010\t0\b2\u0006\u0010\n\u001a\u00020\u000bH\n¢\u0006\u0004\b\f\u0010\r¨\u0006\u000e"}, d2 = {"<anonymous>", "", "R", "P0", "P1", "P2", "P3", "args", "", "", "promise", "Lexpo/modules/kotlin/Promise;", "invoke", "([Ljava/lang/Object;Lexpo/modules/kotlin/Promise;)V", "expo/modules/kotlin/objects/ObjectDefinitionBuilder$AsyncFunction$14"}, k = 3, mv = {1, 6, 0}, xi = 48)
/* renamed from: expo.modules.kotlin.defaultmodules.NativeModulesProxyModule$definition$lambda-1$$inlined$AsyncFunction$1  reason: invalid class name */
/* compiled from: ObjectDefinitionBuilder.kt */
public final class NativeModulesProxyModule$definition$lambda1$$inlined$AsyncFunction$1 extends Lambda implements Function2<Object[], Promise, Unit> {
    final /* synthetic */ NativeModulesProxyModule this$0;

    /* JADX INFO: super call moved to the top of the method (can break code semantics) */
    public NativeModulesProxyModule$definition$lambda1$$inlined$AsyncFunction$1(NativeModulesProxyModule nativeModulesProxyModule) {
        super(2);
        this.this$0 = nativeModulesProxyModule;
    }

    public final void invoke(Object[] objArr, Promise promise) {
        Intrinsics.checkNotNullParameter(objArr, "args");
        Intrinsics.checkNotNullParameter(promise, BaseJavaModule.METHOD_TYPE_PROMISE);
        String str = objArr[0];
        Objects.requireNonNull(str, "null cannot be cast to non-null type kotlin.String");
        String str2 = str;
        String str3 = objArr[1];
        Objects.requireNonNull(str3, "null cannot be cast to non-null type kotlin.String");
        String str4 = str3;
        ReadableArray readableArray = objArr[2];
        Objects.requireNonNull(readableArray, "null cannot be cast to non-null type com.facebook.react.bridge.ReadableArray");
        ReadableArray readableArray2 = readableArray;
        com.facebook.react.bridge.Promise bridgePromise = PromiseKt.toBridgePromise(promise);
        WeakReference<NativeModulesProxy> legacyModulesProxyHolder$expo_modules_core_release = this.this$0.getAppContext().getLegacyModulesProxyHolder$expo_modules_core_release();
        NativeModulesProxy nativeModulesProxy = legacyModulesProxyHolder$expo_modules_core_release == null ? null : (NativeModulesProxy) legacyModulesProxyHolder$expo_modules_core_release.get();
        if (nativeModulesProxy != null) {
            nativeModulesProxy.callMethod(str2, str4, readableArray2, bridgePromise);
            return;
        }
        throw new UnexpectedException("The legacy modules proxy holder has been lost");
    }

    public /* bridge */ /* synthetic */ Object invoke(Object obj, Object obj2) {
        invoke((Object[]) obj, (Promise) obj2);
        return Unit.INSTANCE;
    }
}
    
Download file