Tabnine Logo
ApkSigner$SignerConfig
Code IndexAdd Tabnine to your IDE (free)

How to use
ApkSigner$SignerConfig
in
com.android.apksig

Best Java code snippets using com.android.apksig.ApkSigner$SignerConfig (Showing top 2 results out of 315)

origin: mcxiaoke/ApkSigner

engineSignerConfigs.add(
    new DefaultApkSignerEngine.SignerConfig.Builder(
        signerConfig.getName(),
        signerConfig.getPrivateKey(),
        signerConfig.getCertificates())
        .build());
origin: mcxiaoke/ApkSigner

  /**
   * Returns a new {@code SignerConfig} instance configured based on the configuration of
   * this builder.
   */
  public SignerConfig build() {
    return new SignerConfig(
        mName,
        mPrivateKey,
        mCertificates);
  }
}
com.android.apksigApkSigner$SignerConfig

Javadoc

Configuration of a signer.

Use Builder to obtain configuration instances.

Most used methods

  • <init>
  • getCertificates
    Returns the certificate(s) of this signer. The first certificate's public key corresponds to this si
  • getName
    Returns the name of this signer.
  • getPrivateKey
    Returns the signing key of this signer.

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • requestLocationUpdates (LocationManager)
  • getApplicationContext (Context)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JLabel (javax.swing)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now