CrackMe.apk

Download file
    package com.SekaiCTF.CrackMe;

import android.os.Build;
import android.os.Bundle;
import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
import com.facebook.react.ReactRootView;
import expo.modules.ReactActivityDelegateWrapper;

public class MainActivity extends ReactActivity {
    /* access modifiers changed from: protected */
    public String getMainComponentName() {
        return "main";
    }

    /* access modifiers changed from: protected */
    public void onCreate(Bundle bundle) {
        setTheme(R.style.AppTheme);
        super.onCreate((Bundle) null);
    }

    /* access modifiers changed from: protected */
    public ReactActivityDelegate createReactActivityDelegate() {
        return new ReactActivityDelegateWrapper(this, false, new MainActivityDelegate(this, getMainComponentName()));
    }

    public void invokeDefaultOnBackPressed() {
        if (Build.VERSION.SDK_INT > 30) {
            super.invokeDefaultOnBackPressed();
        } else if (!moveTaskToBack(false)) {
            super.invokeDefaultOnBackPressed();
        }
    }

    public static class MainActivityDelegate extends ReactActivityDelegate {
        /* access modifiers changed from: protected */
        public boolean isConcurrentRootEnabled() {
            return false;
        }

        public MainActivityDelegate(ReactActivity reactActivity, String str) {
            super(reactActivity, str);
        }

        /* access modifiers changed from: protected */
        public ReactRootView createRootView() {
            ReactRootView reactRootView = new ReactRootView(getContext());
            reactRootView.setIsFabric(false);
            return reactRootView;
        }
    }
}
    
Download file