Package com.android.sdklib.internal.build

Examples of com.android.sdklib.internal.build.SignedJarBuilder


        FileInputStream in = new FileInputStream(unsignedApk);
        FileOutputStream out = new FileOutputStream(mOutputApk);
        KeyStore ks = getKeyStore();
        PrivateKey key = (PrivateKey)ks.getKey(ALIAS, ALIAS_PASSWORD);
        X509Certificate cert = (X509Certificate)ks.getCertificate(ALIAS);
        SignedJarBuilder builder = new SignedJarBuilder(out, key, cert);
        builder.writeZip(in, null);
        builder.close();
        out.close();
        in.close();
    }
View Full Code Here

TOP

Related Classes of com.android.sdklib.internal.build.SignedJarBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.