OSDN Git Service

ExifInterface: fix class load failure
authorZhijun He <zhijunhe@google.com>
Fri, 20 Dec 2013 21:28:00 +0000 (13:28 -0800)
committerZhijun He <zhijunhe@google.com>
Fri, 20 Dec 2013 21:28:00 +0000 (13:28 -0800)
libexif_jni was renamed as libjhead_jni

Change-Id: I0ceff1ad288c7ce2255826d5d5ba9ca1f121a556

media/java/android/media/ExifInterface.java

index 20eb356..9db35fc 100644 (file)
@@ -98,7 +98,7 @@ public class ExifInterface {
     private static SimpleDateFormat sFormatter;
 
     static {
-        System.loadLibrary("exif_jni");
+        System.loadLibrary("jhead_jni");
         sFormatter = new SimpleDateFormat("yyyy:MM:dd HH:mm:ss");
         sFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));
     }