update commons to 5.14.15
This commit is contained in:
parent
772880aa77
commit
4e2d9d4957
2 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,7 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.simplemobiletools:commons:5.14.14'
|
implementation 'com.simplemobiletools:commons:5.14.15'
|
||||||
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
||||||
implementation 'androidx.multidex:multidex:2.0.1'
|
implementation 'androidx.multidex:multidex:2.0.1'
|
||||||
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
||||||
|
|
|
@ -64,15 +64,15 @@ abstract class ViewPagerFragment : Fragment() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (detailsFlag and EXT_DATE_TAKEN != 0) {
|
if (detailsFlag and EXT_DATE_TAKEN != 0) {
|
||||||
path.getExifDateTaken(exif, context!!).let { if (it.isNotEmpty()) details.appendln(it) }
|
exif.getExifDateTaken(context!!).let { if (it.isNotEmpty()) details.appendln(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
if (detailsFlag and EXT_CAMERA_MODEL != 0) {
|
if (detailsFlag and EXT_CAMERA_MODEL != 0) {
|
||||||
path.getExifCameraModel(exif).let { if (it.isNotEmpty()) details.appendln(it) }
|
exif.getExifCameraModel().let { if (it.isNotEmpty()) details.appendln(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
if (detailsFlag and EXT_EXIF_PROPERTIES != 0) {
|
if (detailsFlag and EXT_EXIF_PROPERTIES != 0) {
|
||||||
path.getExifProperties(exif).let { if (it.isNotEmpty()) details.appendln(it) }
|
exif.getExifProperties().let { if (it.isNotEmpty()) details.appendln(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
if (detailsFlag and EXT_GPS != 0) {
|
if (detailsFlag and EXT_GPS != 0) {
|
||||||
|
|
Loading…
Reference in a new issue