CrackMe.apk

Download file
    package com.facebook.soloader.nativeloader;

import java.io.IOException;

public interface NativeLoaderDelegate {
    public static final int SKIP_MERGED_JNI_ONLOAD = 1;

    String getLibraryPath(String str) throws IOException;

    int getSoSourcesVersion();

    boolean loadLibrary(String str, int i);
}
    
Download file