32 lines
955 B
Java
32 lines
955 B
Java
package pl.droidsonroids.gif;
|
|
|
|
import android.annotation.SuppressLint;
|
|
import android.content.Context;
|
|
import com.getkeepsafe.relinker.ReLinker;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class LibraryLoader {
|
|
|
|
@SuppressLint({"StaticFieldLeak"})
|
|
private static Context a;
|
|
|
|
private static Context a() {
|
|
if (a == null) {
|
|
try {
|
|
a = (Context) Class.forName("android.app.ActivityThread").getDeclaredMethod("currentApplication", new Class[0]).invoke(null, new Object[0]);
|
|
} catch (Exception e) {
|
|
throw new IllegalStateException("LibraryLoader not initialized. Call LibraryLoader.initialize() before using library classes.", e);
|
|
}
|
|
}
|
|
return a;
|
|
}
|
|
|
|
static void b() {
|
|
try {
|
|
System.loadLibrary("pl_droidsonroids_gif");
|
|
} catch (UnsatisfiedLinkError unused) {
|
|
ReLinker.a(a(), "pl_droidsonroids_gif");
|
|
}
|
|
}
|
|
}
|