Hello. Recently i've been crying all around the internet that camera doesn't include gps info in exif tags.
Nobody helped me, so i built camera from source in android studio. Used min sdk=17, target sdk=18, eclipse compiler, xmpCore and mp4parser.
Added 2 lines in PhotoModule.java:
Also changed everywhere
so i don't know if it works in android 4.3 now. Works in cm10.1, if u remove standard gallery2 of course.
p.s. couldn't compile without
in VideoUtils.java
Nobody helped me, so i built camera from source in android studio. Used min sdk=17, target sdk=18, eclipse compiler, xmpCore and mp4parser.
Added 2 lines in PhotoModule.java:
Code:
exif.setTag(directionTag);
}
if(mLocation != null)
exif.addGpsTags(mLocation.getLatitude(), mLocation.getLongitude());
mActivity.getMediaSaveService().addImage(
Code:
import android.support.v8.renderscript<...>
p.s. couldn't compile without
Code:
IsoFile out = (IsoFile)new DefaultMp4Builder().build(movie);