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;
}
}