in java/com/facebook/soloader/NativeDeps.java [75:86]
public static boolean useDepsFile(byte[] apkId, String depsFilePath) throws IOException {
if (!sInitialized) {
synchronized (NativeDeps.class) {
if (!sInitialized) {
return readDepsFromFile(apkId, depsFilePath);
}
}
}
throw new IllegalStateException(
"Trying to initialize NativeDeps but it was already initialized");
}