mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
update commons to 2.27.8
This commit is contained in:
parent
25070ab2d4
commit
619647b16a
3 changed files with 12 additions and 2 deletions
|
@ -37,7 +37,7 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'com.simplemobiletools:commons:2.26.9'
|
compile 'com.simplemobiletools:commons:2.27.8'
|
||||||
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
|
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
|
||||||
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.0'
|
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.0'
|
||||||
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
||||||
|
|
|
@ -172,7 +172,11 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
|
|
||||||
try {
|
try {
|
||||||
getFileOutputStream(file) {
|
getFileOutputStream(file) {
|
||||||
|
if (it != null) {
|
||||||
saveBitmap(file, bitmap, it)
|
saveBitmap(file, bitmap, it)
|
||||||
|
} else {
|
||||||
|
toast(R.string.image_editing_failed)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Crop compressing failed $path $e")
|
Log.e(TAG, "Crop compressing failed $path $e")
|
||||||
|
|
|
@ -418,6 +418,12 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||||
try {
|
try {
|
||||||
val bitmap = BitmapFactory.decodeFile(currPath)
|
val bitmap = BitmapFactory.decodeFile(currPath)
|
||||||
getFileOutputStream(tmpFile) {
|
getFileOutputStream(tmpFile) {
|
||||||
|
if (it == null) {
|
||||||
|
toast(R.string.unknown_error_occurred)
|
||||||
|
deleteFile(tmpFile) {}
|
||||||
|
return@getFileOutputStream
|
||||||
|
}
|
||||||
|
|
||||||
saveFile(tmpFile, bitmap, it)
|
saveFile(tmpFile, bitmap, it)
|
||||||
if (needsStupidWritePermissions(selectedFile.absolutePath)) {
|
if (needsStupidWritePermissions(selectedFile.absolutePath)) {
|
||||||
deleteFile(selectedFile) {}
|
deleteFile(selectedFile) {}
|
||||||
|
|
Loading…
Reference in a new issue