CrackMe.apk

Download file
    package expo.modules.interfaces.facedetector;

import android.os.Bundle;
import java.util.ArrayList;

public interface FacesDetectionCompleted {
    void detectionCompleted(ArrayList<Bundle> arrayList);
}
    
Download file