All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.unidbg.ios.ipa.IpaLoader64 Maven / Gradle / Ivy

The newest version!
package com.github.unidbg.ios.ipa;

import java.io.File;
import java.io.IOException;

public class IpaLoader64 extends IpaLoader {

    @SuppressWarnings("unused")
    public IpaLoader64(Class callingClass, File rootDir) {
        super(callingClass, rootDir);
    }

    public IpaLoader64(File ipa, File rootDir) {
        super(ipa, rootDir);
    }

    @Override
    public LoadedIpa load(EmulatorConfigurator configurator, String... loads) {
        try {
            return load64(configurator, loads);
        } catch (IOException e) {
            throw new IllegalStateException(e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy