com.android.builder.signing
Interface SignedJarBuilder.IZipEntryFilter

Enclosing class:
SignedJarBuilder

public static interface SignedJarBuilder.IZipEntryFilter

Classes which implement this interface provides a method to check whether a file should be added to a Jar file.


Nested Class Summary
static class SignedJarBuilder.IZipEntryFilter.ZipAbortException
          An exception thrown during packaging of a zip file into APK file.
 
Method Summary
 boolean checkEntry(java.lang.String archivePath)
          Checks a file for inclusion in a Jar archive.
 

Method Detail

checkEntry

boolean checkEntry(java.lang.String archivePath)
                   throws SignedJarBuilder.IZipEntryFilter.ZipAbortException
Checks a file for inclusion in a Jar archive.

Parameters:
archivePath - the archive file path of the entry
Returns:
true if the file should be included.
Throws:
SignedJarBuilder.IZipEntryFilter.ZipAbortException - if writing the file should be aborted.