27 lines
710 B
Java
27 lines
710 B
Java
|
package org.tensorflow.lite;
|
||
|
|
||
|
import java.io.PrintStream;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public final class TensorFlowLite {
|
||
|
public static native String version();
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public static boolean a() {
|
||
|
try {
|
||
|
System.loadLibrary("u134d6");
|
||
|
return true;
|
||
|
} catch (UnsatisfiedLinkError e) {
|
||
|
PrintStream printStream = System.err;
|
||
|
StringBuilder sb = new StringBuilder("TensorFlowLite: failed to load native library: ");
|
||
|
sb.append(e.getMessage());
|
||
|
printStream.println(sb.toString());
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
a();
|
||
|
}
|
||
|
}
|