43 lines
927 B
Java
43 lines
927 B
Java
package com.getkeepsafe.relinker;
|
|
|
|
import android.content.Context;
|
|
import java.io.File;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ReLinker {
|
|
|
|
public interface LibraryInstaller {
|
|
void a(Context context, String[] strArr, String str, File file, ReLinkerInstance reLinkerInstance);
|
|
}
|
|
|
|
public interface LibraryLoader {
|
|
String a(String str);
|
|
|
|
String[] a();
|
|
|
|
String b(String str);
|
|
|
|
void c(String str);
|
|
|
|
void loadLibrary(String str);
|
|
}
|
|
|
|
public interface LoadListener {
|
|
void a();
|
|
|
|
void a(Throwable th);
|
|
}
|
|
|
|
public interface Logger {
|
|
void log(String str);
|
|
}
|
|
|
|
public static void a(Context context, String str) {
|
|
a(context, str, null, null);
|
|
}
|
|
|
|
public static void a(Context context, String str, String str2, LoadListener loadListener) {
|
|
new ReLinkerInstance().a(context, str, str2, loadListener);
|
|
}
|
|
}
|