public class

ImagePipelineNativeLoader

extends Object
java.lang.Object
   ↳ com.facebook.imagepipeline.nativecode.ImagePipelineNativeLoader

Class Overview

Single place responsible for loading libimagepipeline.so and its dependencies.

If your class has a native method whose implementation lives in libimagepipeline.so then call load() in its static initializer: public class ClassWithNativeMethod { static { ImagePipelineNativeLoader.load(); } private static native void aNativeMethod(); }

Summary

Constants
String DSO_NAME
Fields
public static final List<String> DEPENDENCIES
Public Constructors
ImagePipelineNativeLoader()
Public Methods
static void load()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String DSO_NAME

Constant Value: "imagepipeline"

Fields

public static final List<String> DEPENDENCIES

Public Constructors

public ImagePipelineNativeLoader ()

Public Methods

public static void load ()