public enum NativeLibrariesPackagingMode extends java.lang.Enum<NativeLibrariesPackagingMode>
| Enum Constant and Description |
|---|
COMPRESSED
Native libs are packaged as any other file.
|
UNCOMPRESSED_AND_ALIGNED
Native libs are packaged uncompressed and page-aligned, so they can be mapped into memory at
runtime.
|
| Modifier and Type | Method and Description |
|---|---|
static NativeLibrariesPackagingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NativeLibrariesPackagingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeLibrariesPackagingMode COMPRESSED
public static final NativeLibrariesPackagingMode UNCOMPRESSED_AND_ALIGNED
Support for this mode was added in Android 23, it only works if the extractNativeLibs attribute is set in the manifest.
public static NativeLibrariesPackagingMode[] values()
for (NativeLibrariesPackagingMode c : NativeLibrariesPackagingMode.values()) System.out.println(c);
public static NativeLibrariesPackagingMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null