properly fetch the Date Taken value on Android 10
This commit is contained in:
parent
dc79e4531f
commit
af3b4e46f0
|
@ -62,7 +62,7 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.simplemobiletools:commons:5.17.13'
|
implementation 'com.simplemobiletools:commons:5.17.16'
|
||||||
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'
|
||||||
|
|
|
@ -304,7 +304,9 @@ class MediaFetcher(val context: Context) {
|
||||||
try {
|
try {
|
||||||
val path = cursor.getStringValue(MediaStore.Images.Media.DISPLAY_NAME)
|
val path = cursor.getStringValue(MediaStore.Images.Media.DISPLAY_NAME)
|
||||||
val dateTaken = cursor.getLongValue(MediaStore.Images.Media.DATE_TAKEN)
|
val dateTaken = cursor.getLongValue(MediaStore.Images.Media.DATE_TAKEN)
|
||||||
|
if (dateTaken != 0L) {
|
||||||
dateTakens[path] = dateTaken
|
dateTakens[path] = dateTaken
|
||||||
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
}
|
}
|
||||||
} while (cursor.moveToNext())
|
} while (cursor.moveToNext())
|
||||||
|
|
Loading…
Reference in New Issue