Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 934349e8 authored by Zhijun He's avatar Zhijun He
Browse files

ExifInterface: fix class load failure

libexif_jni was renamed as libjhead_jni

Change-Id: I0ceff1ad288c7ce2255826d5d5ba9ca1f121a556
parent 44e26f2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -98,7 +98,7 @@ public class ExifInterface {
    private static SimpleDateFormat sFormatter;
    private static SimpleDateFormat sFormatter;


    static {
    static {
        System.loadLibrary("exif_jni");
        System.loadLibrary("jhead_jni");
        sFormatter = new SimpleDateFormat("yyyy:MM:dd HH:mm:ss");
        sFormatter = new SimpleDateFormat("yyyy:MM:dd HH:mm:ss");
        sFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));
        sFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));
    }
    }