Package com.android.builder.model
Interface NativeLibrary
Deprecated.
A Native Library. The configurations used to create a shared object.
Deprecated since ndk-compile is deprecated.
-
Method Summary
Modifier and TypeMethodDescriptiongetAbi()Deprecated.Returns the ABI of the library.Deprecated.A list of compiler flags for C code.Deprecated.A list of defines for C code.Deprecated.A list of include directories for compiling C code.Deprecated.A list of compiler flags for C++ code.Deprecated.A list of defines for C++ code.Deprecated.A list of include directories for compiling C++ code.Deprecated.A list of system include directories for compiling C++ code.Deprecated.A list of system include directories for compiling C code.Deprecated.The folders containing built libraries with debug information.getName()Deprecated.Returns the name of the native library.Deprecated.Returns the name of the toolchain used to compile the native library.
-
Method Details
-
getName
Deprecated.Returns the name of the native library. A native library "libfoo.so" would have the name of "foo".- Returns:
- name of the native library.
-
getAbi
Deprecated.Returns the ABI of the library.- Returns:
- abi of the library.
-
getToolchainName
Deprecated.Returns the name of the toolchain used to compile the native library.- Returns:
- name of the toolchain.
-
getCIncludeDirs
Deprecated.A list of include directories for compiling C code.- Returns:
- list of include directories.
-
getCppIncludeDirs
Deprecated.A list of include directories for compiling C++ code.- Returns:
- list of include directories.
-
getCSystemIncludeDirs
Deprecated.A list of system include directories for compiling C code.- Returns:
- list of include directories.
-
getCppSystemIncludeDirs
Deprecated.A list of system include directories for compiling C++ code.- Returns:
- list of include directories.
-
getCDefines
Deprecated.A list of defines for C code.- Returns:
- list of defines.
-
getCppDefines
Deprecated.A list of defines for C++ code.- Returns:
- list of defines.
-
getCCompilerFlags
Deprecated.A list of compiler flags for C code.- Returns:
- list of compiler flags.
-
getCppCompilerFlags
Deprecated.A list of compiler flags for C++ code.- Returns:
- list of compiler flags.
-
getDebuggableLibraryFolders
Deprecated.The folders containing built libraries with debug information.- Returns:
- list of paths to locate shared objects with debug information.
-