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

net.dongliu.apk.parser.bean.ApkV2Signer Maven / Gradle / Ivy

The newest version!
package net.dongliu.apk.parser.bean;

import java.util.List;

/**
 * ApkSignV1 certificate file.
 */
public class ApkV2Signer {
    /**
     * The meta info of certificate contained in this cert file.
     */
    private List certificateMetas;

    public ApkV2Signer(List certificateMetas) {
        this.certificateMetas = certificateMetas;
    }

    public List getCertificateMetas() {
        return certificateMetas;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy